Home

Submit

Source

Feeds
Tutorials » ASP.NET » Web Forms

ASP.NET Web Forms Tutorials

Microsoft has made several aspects of working with forms easier in ASP.NET 2.0. These tutorials provide solutions to many form-related problems you are likely to encounter in using ASP.NET. Forms provide the visual interface of your applications. Each form is a combination of programming logic and user interface rendered as an HTML page by the user's browser. ASP.NET server controls provide the basic building blocks of forms and expose an object model containing properties, methods, and events.

ASP.NET Web Forms
A Simple Contact Form
ASP.NET / Web Forms
This is a very basic contact form which can be used for any kind of website. Web form contains name, email, subject and message inputs. When visitor clicks send button, script send all information from contact form. Change only mail server and default email within the script.

Site: www.dotnetindex.com Report - View Tutorial

ASP.NET Web Forms
Accessing the controls and methods of a MasterPage
ASP.NET / Web Forms
If you are looking to access the method, property or control of an ASP.NET MasterPage from inside a web form you need to do a little trick to get it to work properly. This tutorial explains how you can do this with only a few lines of code, and it also shows you how to create MasterPages that you can use with web forms.

Site: www.geekpedia.com Report - View Tutorial

ASP.NET Web Forms
Group validation in ASP.NET 2.0
ASP.NET / Web Forms
This tutorial will teach you how to use the ValidationGroup property introduced in ASP.NET 2.0, which allows you to link validators to buttons, so that certain buttons in a form can only trigger certain validators.

Site: www.geekpedia.com Report - View Tutorial

ASP.NET Web Forms
How-to implement the Calendar control in asp.NET
ASP.NET / Web Forms
The Calendar control is an easy to use control once you know what you are doing. It has enough features to be used in most instances where you need to display dates in calendar form. This tutorial will show you how to implement the most basic form of the Calendar control, then adjust it to make it look like an event calendar where the days containing events are marked as such.

Site: www.chauy.com Report - View Tutorial

ASP.NET Web Forms
How to bind a DataGrid to an array
ASP.NET / Web Forms
It simply shows how to bind a DataGrid to an array using C# code.

Site: www.geekpedia.com Report - View Tutorial

ASP.NET Web Forms
Performing custom validation
ASP.NET / Web Forms
Demonstrates how to use custom validation on a form by checking to see if a string in a TextBox is not the same with a string from an array (or database), case in which it displays 'This name is already taken'.

Site: www.geekpedia.com Report - View Tutorial

ASP.NET Web Forms
Validate using RequiredFieldValidator
ASP.NET / Web Forms
In this tutorial you'll find out how to validate a TextBox and RadioButtonList control on a webform using RequiredFieldValidator, which will show a warning and stop the submission of the form if a required field has no value.

Site: www.geekpedia.com Report - View Tutorial

ASP.NET Web Forms
Submitting Web Form data from one ASP.NET page to another
ASP.NET / Web Forms
This article discusses different options you as a developer have in ASP.NET to send data from one ASP.NET page to another. Since you cannot use ASP.NET Web Controls (System.Web.UI.WebControls) in such a scenario (which only allow posting back of data to the same page), this article discusses other ways like using HttpContext object.

Site: www.stardeveloper.com Report - View Tutorial

ASP.NET Web Forms
Generating Forms Authentication Compatible Passwords (SHA1)
ASP.NET / Web Forms
In this article we will take a quick look at two methods for creating SHA1 passwords for use on the web.

Site: stardeveloper.com Report - View Tutorial

 
Site Search

 
ASP.NET »
 
Categories
2D Graphics 3D Graphics Office Applications Databases Desktop Programming Web Development
 
Advertisement