Sunday 22 January 2023

Data Adapter



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

Wednesday 11 January 2023

School/College time table management

 



Class Time Table Management synopsis is suitable for MCA, BCA, BSc, and MSc computer science students. This synopsis covered all the topics which are required in standard synopsis. You will get both PDF and word versions. You can implement the actual project on behalf of this synopsis documentation. Download the version of PDF and the editable word version given below.




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>