Skip to content

You can see online users of your system live through this code

Notifications You must be signed in to change notification settings

mohamadrezamvd/OnlineDemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

OnlineDemo

You can see online users of your system live through this code

** SQL server And .Net 7 **

script :

CREATE DATABASE OnlineDemoDatabase GO USE OnlineDemoDatabase GO CREATE TABLE [User] ( UserId INT IDENTITY PRIMARY KEY, Username NVARCHAR(50) NOT NULL UNIQUE, [Password] NVARCHAR(50) NOT NULL, LastSeen DATETIME NOT NULL DEFAULT GETDATE() ) GO INSERT User VALUES(N'ramezani',N'0000') GO INSERT User VALUES(N'moumivand',N'0000') GO INSERT User VALUES(N'azimi',N'0000') GO INSERT User VALUES(N'abbasi',N'0000') GO

About

You can see online users of your system live through this code

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published