Data Adapter can be considered a collection of command objects which act like an interface between the database and the dataset.
Sunday, 22 January 2023
Data Adapter

Wednesday, 11 January 2023
School/College time table management
Click to Download Inter College Management Synopsis PDF Version
Click to Download Inter College Management Synopsis Word Editable Version

Friday, 30 December 2022
Education E-commerce Synopsis | BCA, MCA, Bsc, O-Level, A-Level, IGNOU
Education E-commerce Synopsis
This is an e-commerce category project, with the help of this project, you can sell education-related material online such as audio, video, PDF, etc. A payment gateway is integrated with this project and detailed reporting is done for admin. The website is completely dynamic so there is no need to change any kind of static code. This website is completely secure and the latest technology has been used.

Thursday, 15 December 2022
FormsAuthentication C# ASP.NET MVC
FormsAuthentication
FormsAuthentication class from System.Web.Security is used to authenticate a user whether login or not. FormsAuthentication class has many functions to check the user login and it's very easy to implement. Follow the code given below
Views
<h2>Login</h2>
<form method="post">
<input type="text" name="UserName" placeholder="User Name" required /><br /><br />
<input type="password" name="Password" placeholder="Password" required /><br /><br />
<input type="submit" value="Login" />
@if
(Request.QueryString["msg"] != null)
{
<br /><br />
<span style="color:red">@Request.QueryString["msg"]</span>
}
</form>
