A simple zero level chat website made with ASP.NET Form and SQL Server as Backend service.
[Don't expect good architecture or much more security or much features. As I mentioned it is for zero level. I built it when I was newbie in the programming world]
- Registration Page.
- Login Page.
- Chat Page.
- Master Page.
- A secret Admin Page [But Not much Secure. LOL!]
If you want to run this project on your PC.
[[NOTE: ALL Source files are available under src
folder.]]
-
Make a Database named
UserDB
. -
Run
FullSQLScript.sql
to your database which is provided with the source code (Under SQL Folder). -
Setup
ConnectionString
:connectionString = "Server=##Server-Name##; Database=##DATABASE-NAME##; User ID=##USER-ID##;Password=##Password## ;Integrated Security=True;"
- Replace the all
##All-content##
with your one. - If you want
Windows Authentication
, removeUser ID
&Password
. - If you want
SQL Server Authentication
, you can removeIntegrated Security=True
. - Example: (in my case)
connectionString = "Server=RITWICK\LOCALSQLSERVER; Database=UserDB; User ID=sa; Password=********"
- Replace the all
-
Fill Up the connectionString to
Web.Config
. -
And All setup is completed, Lets run it :)
[If you're having any trouble to setup, contact with me. I'll happy to help you.]