├── App_Code ├── BAL │ ├── BAL.cs │ ├── EntryFormBAL.cs │ ├── SuggesionByRankBAL.cs │ ├── suggestallBAL.cs │ └── suggestbytimeBAL.cs └── DAL │ └── ConnectionFactory.cs ├── Bin ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.dll.refresh ├── Newtonsoft.Json.pdb └── Newtonsoft.Json.xml ├── Database Backup └── HackathonDB.bak ├── Default.aspx ├── Default.aspx.cs ├── EntryForm.aspx ├── EntryForm.aspx.cs ├── Global.asax ├── MainMaster.master ├── MainMaster.master.cs ├── Map-Marker.png ├── README.md ├── Screenshots ├── 1.jpg ├── 2.jpg └── 3.jpg ├── SuggesionByRank.aspx ├── SuggesionByRank.aspx.cs ├── Web.config ├── css ├── style.css └── style.css~ ├── fonts ├── Philosopher-Bold │ ├── Philosopher-Bold.eot │ ├── Philosopher-Bold.otf │ ├── Philosopher-Bold.svg │ ├── Philosopher-Bold.ttf │ └── Philosopher-Bold.woff └── Philosopher-Regular │ ├── Philosopher-Regular.eot │ ├── Philosopher-Regular.otf │ ├── Philosopher-Regular.svg │ ├── Philosopher-Regular.ttf │ └── Philosopher-Regular.woff ├── home.aspx ├── home.aspx.cs ├── images ├── best-game1.jpg ├── best-game2.jpg ├── bg-body-footer.png ├── bg-body-header.png ├── bg-body.jpg ├── bg-body2.png ├── bg-footer.png ├── bg-footer2.png ├── bg-header.png ├── bg-header2.png ├── bg-more-hover.png ├── bg-more.png ├── bg-navigation.png ├── bg-page.jpg ├── blog1.jpg ├── blog2.jpg ├── border.gif ├── border2.gif ├── featured-game.png ├── game1.jpg ├── game2.jpg ├── game3.jpg ├── game4.jpg ├── game5.jpg ├── game6.jpg ├── games.jpg ├── gradient.png ├── gradient2.png ├── gradient3.png ├── gradient4.png ├── gradient5.png ├── icons.png ├── logo.png ├── media.jpg ├── media2.jpg ├── media3.jpg ├── menu.png ├── video1.jpg ├── video2.jpg ├── video3.jpg ├── video4.jpg ├── wallpaper1.jpg ├── wallpaper2.jpg ├── wallpaper3.jpg ├── wallpaper4.jpg └── welcome.jpg ├── suggestall.aspx ├── suggestall.aspx.cs ├── suggestbytime.aspx ├── suggestbytime.aspx.cs ├── welcomepage.aspx └── welcomepage.aspx.cs /App_Code/BAL/BAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/App_Code/BAL/BAL.cs -------------------------------------------------------------------------------- /App_Code/BAL/EntryFormBAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/App_Code/BAL/EntryFormBAL.cs -------------------------------------------------------------------------------- /App_Code/BAL/SuggesionByRankBAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/App_Code/BAL/SuggesionByRankBAL.cs -------------------------------------------------------------------------------- /App_Code/BAL/suggestallBAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/App_Code/BAL/suggestallBAL.cs -------------------------------------------------------------------------------- /App_Code/BAL/suggestbytimeBAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/App_Code/BAL/suggestbytimeBAL.cs -------------------------------------------------------------------------------- /App_Code/DAL/ConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/App_Code/DAL/ConnectionFactory.cs -------------------------------------------------------------------------------- /Bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Bin/Newtonsoft.Json.dll.refresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Bin/Newtonsoft.Json.dll.refresh -------------------------------------------------------------------------------- /Bin/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Bin/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /Bin/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Bin/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Database Backup/HackathonDB.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Database Backup/HackathonDB.bak -------------------------------------------------------------------------------- /Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Default.aspx -------------------------------------------------------------------------------- /Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Default.aspx.cs -------------------------------------------------------------------------------- /EntryForm.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/EntryForm.aspx -------------------------------------------------------------------------------- /EntryForm.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/EntryForm.aspx.cs -------------------------------------------------------------------------------- /Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Global.asax -------------------------------------------------------------------------------- /MainMaster.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/MainMaster.master -------------------------------------------------------------------------------- /MainMaster.master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/MainMaster.master.cs -------------------------------------------------------------------------------- /Map-Marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Map-Marker.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | "# SmartLocatorHackathon" 2 | -------------------------------------------------------------------------------- /Screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Screenshots/1.jpg -------------------------------------------------------------------------------- /Screenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Screenshots/2.jpg -------------------------------------------------------------------------------- /Screenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Screenshots/3.jpg -------------------------------------------------------------------------------- /SuggesionByRank.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/SuggesionByRank.aspx -------------------------------------------------------------------------------- /SuggesionByRank.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/SuggesionByRank.aspx.cs -------------------------------------------------------------------------------- /Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/Web.config -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/css/style.css~ -------------------------------------------------------------------------------- /fonts/Philosopher-Bold/Philosopher-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Bold/Philosopher-Bold.eot -------------------------------------------------------------------------------- /fonts/Philosopher-Bold/Philosopher-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Bold/Philosopher-Bold.otf -------------------------------------------------------------------------------- /fonts/Philosopher-Bold/Philosopher-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Bold/Philosopher-Bold.svg -------------------------------------------------------------------------------- /fonts/Philosopher-Bold/Philosopher-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Bold/Philosopher-Bold.ttf -------------------------------------------------------------------------------- /fonts/Philosopher-Bold/Philosopher-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Bold/Philosopher-Bold.woff -------------------------------------------------------------------------------- /fonts/Philosopher-Regular/Philosopher-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Regular/Philosopher-Regular.eot -------------------------------------------------------------------------------- /fonts/Philosopher-Regular/Philosopher-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Regular/Philosopher-Regular.otf -------------------------------------------------------------------------------- /fonts/Philosopher-Regular/Philosopher-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Regular/Philosopher-Regular.svg -------------------------------------------------------------------------------- /fonts/Philosopher-Regular/Philosopher-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Regular/Philosopher-Regular.ttf -------------------------------------------------------------------------------- /fonts/Philosopher-Regular/Philosopher-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/fonts/Philosopher-Regular/Philosopher-Regular.woff -------------------------------------------------------------------------------- /home.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/home.aspx -------------------------------------------------------------------------------- /home.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/home.aspx.cs -------------------------------------------------------------------------------- /images/best-game1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/best-game1.jpg -------------------------------------------------------------------------------- /images/best-game2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/best-game2.jpg -------------------------------------------------------------------------------- /images/bg-body-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-body-footer.png -------------------------------------------------------------------------------- /images/bg-body-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-body-header.png -------------------------------------------------------------------------------- /images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-body.jpg -------------------------------------------------------------------------------- /images/bg-body2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-body2.png -------------------------------------------------------------------------------- /images/bg-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-footer.png -------------------------------------------------------------------------------- /images/bg-footer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-footer2.png -------------------------------------------------------------------------------- /images/bg-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-header.png -------------------------------------------------------------------------------- /images/bg-header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-header2.png -------------------------------------------------------------------------------- /images/bg-more-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-more-hover.png -------------------------------------------------------------------------------- /images/bg-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-more.png -------------------------------------------------------------------------------- /images/bg-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-navigation.png -------------------------------------------------------------------------------- /images/bg-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/bg-page.jpg -------------------------------------------------------------------------------- /images/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/blog1.jpg -------------------------------------------------------------------------------- /images/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/blog2.jpg -------------------------------------------------------------------------------- /images/border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/border.gif -------------------------------------------------------------------------------- /images/border2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/border2.gif -------------------------------------------------------------------------------- /images/featured-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/featured-game.png -------------------------------------------------------------------------------- /images/game1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/game1.jpg -------------------------------------------------------------------------------- /images/game2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/game2.jpg -------------------------------------------------------------------------------- /images/game3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/game3.jpg -------------------------------------------------------------------------------- /images/game4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/game4.jpg -------------------------------------------------------------------------------- /images/game5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/game5.jpg -------------------------------------------------------------------------------- /images/game6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/game6.jpg -------------------------------------------------------------------------------- /images/games.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/games.jpg -------------------------------------------------------------------------------- /images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/gradient.png -------------------------------------------------------------------------------- /images/gradient2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/gradient2.png -------------------------------------------------------------------------------- /images/gradient3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/gradient3.png -------------------------------------------------------------------------------- /images/gradient4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/gradient4.png -------------------------------------------------------------------------------- /images/gradient5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/gradient5.png -------------------------------------------------------------------------------- /images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/icons.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/media.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/media.jpg -------------------------------------------------------------------------------- /images/media2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/media2.jpg -------------------------------------------------------------------------------- /images/media3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/media3.jpg -------------------------------------------------------------------------------- /images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/menu.png -------------------------------------------------------------------------------- /images/video1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/video1.jpg -------------------------------------------------------------------------------- /images/video2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/video2.jpg -------------------------------------------------------------------------------- /images/video3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/video3.jpg -------------------------------------------------------------------------------- /images/video4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/video4.jpg -------------------------------------------------------------------------------- /images/wallpaper1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/wallpaper1.jpg -------------------------------------------------------------------------------- /images/wallpaper2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/wallpaper2.jpg -------------------------------------------------------------------------------- /images/wallpaper3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/wallpaper3.jpg -------------------------------------------------------------------------------- /images/wallpaper4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/wallpaper4.jpg -------------------------------------------------------------------------------- /images/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/images/welcome.jpg -------------------------------------------------------------------------------- /suggestall.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/suggestall.aspx -------------------------------------------------------------------------------- /suggestall.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/suggestall.aspx.cs -------------------------------------------------------------------------------- /suggestbytime.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/suggestbytime.aspx -------------------------------------------------------------------------------- /suggestbytime.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/suggestbytime.aspx.cs -------------------------------------------------------------------------------- /welcomepage.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/welcomepage.aspx -------------------------------------------------------------------------------- /welcomepage.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/SmartLocatorHackathon/HEAD/welcomepage.aspx.cs --------------------------------------------------------------------------------