Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ritwickdey/wemate
A simple zero level chat website made with ASP.NET Form and SQL Server as Backend service.
https://github.com/ritwickdey/wemate
asp-net asp-net-webform beginner-project chat chat-application csharp sql-server
Last synced: about 1 month ago
JSON representation
A simple zero level chat website made with ASP.NET Form and SQL Server as Backend service.
- Host: GitHub
- URL: https://github.com/ritwickdey/wemate
- Owner: ritwickdey
- License: mit
- Created: 2017-07-03T14:27:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-07T09:19:56.000Z (almost 2 years ago)
- Last Synced: 2023-02-26T18:46:51.524Z (almost 2 years ago)
- Topics: asp-net, asp-net-webform, beginner-project, chat, chat-application, csharp, sql-server
- Language: ASP
- Homepage:
- Size: 405 KB
- Stars: 13
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WeMate
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]_**
## Video Demo
* [Youtube Link](https://www.youtube.com/watch?v=4zACchQ797o)## Features
* Registration Page.
* Login Page.
* Chat Page.
* Master Page.
* A secret Admin Page [But Not much Secure. LOL!]## Installation
If you want to run this project on your PC._**[[NOTE: ALL Source files are available under `src` folder.]]**_
1. Make a Database named `UserDB`.
2. Run `FullSQLScript.sql` to your database which is provided with the source code (Under SQL Folder).
3. Setup `ConnectionString`:
```Csharp
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`, remove `User ID` & `Password`.
* If you want `SQL Server Authentication`, you can remove `Integrated Security=True`.
* Example: (in my case)
```csharp
connectionString = "Server=RITWICK\LOCALSQLSERVER; Database=UserDB; User ID=sa; Password=********"
```4. Fill Up the connectionString to `Web.Config`.
5. 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.]*
## LICENSE
[MIT License](LICENSE)