Skip to main content

Posts

Showing posts with the label C#

Create a simple registration form in ASP.Net with C#

I n this article we will how to create or design a simple registration form in ASP.Net with the help of C sharp and store the entries in SQL Server database. You will need following software's to accomplish this: Visual Studio 2010 SQL Server 2008 Follow the steps below to make it: Step 1: First open your visual studio 2010 -> File -> New -> Web site -> ASP.NET Empty Web site -> click OK. (Make sure to select Visual C# from installed template and you can give the name to the website.) Step 2: Now in Solution Explorer -> Add New Item -> Web Form -> click on Add. Step 3: Now make the basic html table in the source section of empty form and insert the fields like -  Use the Text boxes for each field, Label for username to see the availability, Buttons from the Toolbox section. Set unique ID for these tools to avoid confusion. To make the reset button add following line in the source code near the submit button. <inpu...