Server Intellect
 
Home   Asp.Net Tutorials   What's New   Newsletter   More Resources
Tutorial RSS
 
  Categories
Advanced Technologies
AJAX
Internet Browsers
Charts
Controls
Database
Email
Error Handling
File
Graphics
Website Navigation
Network
Performance
User Interface and Themes
Validation
Visual Web Developer
Web Services
XML
Suggest Tutorial


Navigator: Home - Tutorials - Controls
ASP.NET Controls Tutorials and Code Samples


ASP.NET Controls Tutorials
Access LoginView Templated Controls with ASP 4.0 and C#
This tutorial we will demonstrate how to access ASP.NET controls located in the LoggedInTemplate of a LoginView Control from the C# code behind class.
How to Lock and Unlock Users with ASP.NET 4.0 and C#
This tutorial will walk you through the steps of configuring ASP.NET's Login Control to lock users out if they fail to login too many times, and show you how to automatically unlock them in C#.
Add CreateUserWizard Steps with ASP.NET 4.0 and C#
This tutorial will demonstrate how to add a new custom step to ASP.NET's CreateUserWizard Control and how to store the extra data gathered in the database with other user information in C#.
Registration Emails in CreateUserWizard with ASP.NET-C#
This tutorial demonstrates how to add registration emails to verify new accounts with ASP.NET's CreateUserWizard Control using C#.
How to Add Errors to a LoginControl with ASP.NET and C#
In this tutorial we will demonstrate how to customize ASP.NET’s Login Control to display detailed errors for our users.
ASP.NET 4.0 Login Controls Walkthrough
In this tutorial we will explore some of ASP.NET’s Login Controls and demonstrate how they work with each other.
Using the CreateUserWizard Control With ASP.NET 4.0
In this tutorial we will explore ASP.NET's CreateUserWizard Control by demonstrating how we can use this to easily create accounts from our own website.
Using the PasswordRecovery Control With ASP.NET 4.0
In this tutorial we will explore ASP.NET's PasswordRecovery Control by configuring an email to send our user their password.
Using the LoginView Control With ASP.NET 4.0
In this tutorial we will explore ASP.NET’s LoginView Control by displaying different content to users based on if they are logged in or not.
Using the ChangePassword Control With ASP.NET 4.0
In this tutorial we will explore the ChangePassword Control by demonstrating how to create a User Account with the ASP.NET Website Administration Tool and then change the password to that account from our own website.
Using the LoginName Control With ASP.NET 4.0
In this tutorial we will explore ASP.NET's LoginName Control and have it display our Username once we login.
Using the LoginStatus Control With ASP.NET 4.0
In this tutorial we will explore ASP.NET's LoginStatus Control and link it to a Login page.
Using the Login Control With ASP.NET 4.0
In this tutorial we will explore ASP.NET’s Login Control and also briefly go over creating user accounts so that we can test our Login Control.
Using the File Field Control to Upload one/many Files

This tutorial will show you how to use the File Field Control to allow end-users to upload one or many files to your server.

How to use the InsertItemTemplate for a Comments Page

In this tutorial we can use the ListView control to insert new records into a database table. The ListView control supports an InsertItemTemplate. We will demonstrate how you can use the InsertItemTemplate to create a simple customer feedback form.

How to Display Nested UpdatePanels using the ListView

This tutorial will demonstrate how to page using the ListView control in nested UpdatePanels. The UpdatePanel control enables you to build rich, client centric Web applications. UpdatePanel controls allow you to refresh the selected parts of a page rather than refreshing an entire whole page with a postback.

How to Display a Page Form with a ListView Control C#

Learn how to display a master/detail form with a ListView control using ASP.NET 3.5 C#

Learn How to Use the DataList control in ASP.NET 3.5 C#
In this tutorial will demonstrate how to use a DataList control to allow users to select individual items in the particular list.
Using OnItemDataBound with Repeater in ASP.NET and C#
This tutorial will show you how to use the OnItemDataBound event of a Repeater control to query data when displaying from a data source. C#.
Using the Repeater Control with PagedDataSource in C#
In this tutorial, we will cover how to use PagedDataSource with a Repeater. This will allow us to spread out large amounts of information on several pages. We will be collecting the information from a SQL database. C#.
Using and Creating User Controls in ASP.NET
In this tutorial, we will cover the basics of ASP.NET User Controls using C#. User Controls use the extension ascx and can be placed inside of your ASP.NET code on your aspx page.
Using the DefaultButton Property of a Panel in ASP.NET
In this tutorial, we will cover how to use the DefaultButton attribute on the Panel control. This attribute allows the user to press enter on a page with multiple forms. This attribute can be extremely useful for frequent or easily confused visitors.
Using the MultiView Control in ASP.NET 3.5 with C#
This tutorial will show you how to use the MultiView Control in conjunction with AJAX to create multi-step applications. C#.
Allow Files to Open from TreeView Control in VB.NET
This tutorial will show you how to use the TreeView control to allow clicking of files to open from your web browser. VB version.
Allow Files to Open from TreeView Control in C#
This tutorial will show you how to use the TreeView control to allow clicking of files to open from your web browser. C# version.
Using the ObjectDataSource Control with VB
ObjectDataSource Controls can be used to represent any object. This tutorial will show you how we can use the ObjectDataSource control with collections and a DataGrid. VB version.
Using the ObjectDataSource Control with C#
ObjectDataSource Controls can be used to represent any object. This tutorial will show you how we can use the ObjectDataSource control with collections and a DataGrid. C# version.
ListView Sorting Data in ASP.NET 3.5
This tutorial will show you how to use the new ListView Control to sort data from a database.
Using User Controls in ASP.NET 2.0 and C#
This tutorial will show how we can create a User Control to use as navigation and include it on multiple pages. C# version.
GridView Control PagerTemplate in VB and ASP.NET
This tutorial shows how we can modify the pager section of a GridView using the PagerTemplate tags. VB version.
GridView Control PagerTemplate in C# and ASP.NET
This tutorial shows how we can modify the pager section of a GridView using the PagerTemplate tags. C# version.
Using Nested Repeaters in ASP.NET and VB
This tutorial shows how to use nested repeaters to display hierarchical data from a database. VB version.
Using Nested Repeaters in ASP.NET and C#
This tutorial shows how to use nested repeaters to display hierarchical data from a database. C# version.
Using the GridView Control in ASP.NET
This tutorial provides an introduction into using the GridView control to display data.
How to Use Custom Controls in ASP.NET and VB
This tutorials explains how we can add custom controls to our project, and how to programmtically access the control's properties and methods. VB version.
How to Use Custom Controls in ASP.NET and C#
This tutorials explains how we can add custom controls to our project, and how to programmtically access the control's properties and methods. C# version.
Using FindControl with a MasterPage in ASP.NET & VB
This tutorials shows how we can use the FindControl method to reference controls in naming containers. C# version.
Using FindControl with a MasterPage in ASP.NET & C#
This tutorials shows how we can use the FindControl method to reference controls in naming containers. C# version.
Using a Paged Data Source with ASP.NET and C#
This tutorial will show how we can use a Paged Data Source to create pages within a Repeater Control. C# version.
Using a Paged Data Source with ASP.NET and VB.NET
This tutorial will show how we can use a Paged Data Source to create pages within a Repeater Control. VB version.
How to DataBind User Interface Controls in ASP.NET & VB
This tutorials shows how we can Bind Data to controls and use those controls to manipulate this data. We use a GridView control and a DetailsView control to show data from a database, when the user clicks on a particular record. VB version.
How to DataBind User Interface Controls in ASP.NET & C#
This tutorials shows how we can Bind Data to controls and use those controls to manipulate this data. We use a GridView control and a DetailsView control to show data from a database, when the user clicks on a particular record. C# version.
Using Membership & User Login controls in ASP.NET 2.0
This tutorial will show how you can set up membership and user login for a website using ASP.NET 2.0
Using Reuseable Elements with User Controls in VB
This tutorial will allow you to move data from one list box to another, as well as remove them again - either one by one, or altogether. Also, you can choose to allow duplicates or not, as well as output the chosen selection. VB version.
Using Reuseable Elements with User Controls in C#
This tutorial will allow you to move data from one list box to another, as well as remove them again - either one by one, or altogether. Also, you can choose to allow duplicates or not, as well as output the chosen selection. C# version.
Using the AdRotator Control in ASP.NET 2.0 and VB
This tutorial will show how to implement random advertisements on your website, using the AdRotator Control, and how to capture the number of clicks for each. VB version.
Using the AdRotator Control in ASP.NET 2.0 and C#
This tutorial will show how to implement random advertisements on your website, using the AdRotator Control, and how to capture the number of clicks for each. C# version.
TreeView without page refresh by ASP.NET 2.0 and VB.NET
This tutorial will show you how to work with TreeView control to display folders and file names without refreshing web page by VB.NET and ASP.NET 2.0.
TreeView without page refresh in ASP.NET 2.0 and C#
This tutorial will show you how to work with TreeView control to display folders and file names without refreshing web page by C# and ASP.NET 2.0.
How to use Panel Control using ASP.NET 2.0 and VB.NET
This tutorial will show you how to use panel control using ASP.NET 2.0 and VB.NET
How to use Panel Control using ASP.NET 2.0 and C#.NET
This tutorial will show you how to use panel control using ASP.NET 2.0 and C# 2.0
Calculate Price using ASP.NET 2.0 GridView and VB.NET
This example demonstrates how calculate total price in GridView Control.
Calculate Price using ASP.NET 2.0 GridView and C#
This example demonstrates how calculate total price in GridView Control.
How to page Repeater using ASP.NET 2.0 and VB.NET
This tutorial will show you how to page Repeater using ASP.NET 2.0 and VB.NET
How to page Repeater using ASP.NET 2.0 and C#.NET
This tutorial will show you how to page Repeater using ASP.NET 2.0 and C#.NET
GridViewComplexHead using ASP.NET 2.0 and VB
The ICollection interface is the base interface for classes in the System.Collections namespace. Dictionary and IList are more specialized interfaces that are based on the ICollection interface. An IDictionary implementation is a collection of key-and-value pairs, like the Hashtable class. An IList implementation is a collection of values that can be sorted and whose members can be accessed by index, like the Array List class.We use the DataTable to add column. And use the DataRow to add row. We use the Literal control to reserve a location on the Web page to display text. The Literal control is similar to the Label control, except the Literal control does not allow you to apply a style to the displayed text. You can programmatically control the text displayed in the control by setting the Text property. We use the Literal control to add complex head.
GridViewComplexHead using ASP.NET 2.0 and C#.NET
The ICollection interface is the base interface for classes in the System.Collections namespace. Dictionary and IList are more specialized interfaces that are based on the ICollection interface. An IDictionary implementation is a collection of key-and-value pairs, like the Hashtable class. An IList implementation is a collection of values that can be sorted and whose members can be accessed by index, like the Array List class.We use the DataTable to add column. And use the DataRow to add row. We use the Literal control to reserve a location on the Web page to display text. The Literal control is similar to the Label control, except the Literal control does not allow you to apply a style to the displayed text. You can programmatically control the text displayed in the control by setting the Text property. We use the Literal control to add complex head.
Populate a treeview node on the client using VB
This example illustrates TreeView how to populate a node on the client using ASP.NET 2.0 and VB.NET.
Populate a treeview node on the client using C#
This example illustrates TreeView how to populate a node on the client using ASP.NET 2.0 and C#.NET.
Working with List box in ASP.NET 2.0 and VB.NET
The ListBox control enables you to display a list of items to the user that the user can select by clicking. A ListBox control can provide single or multiple selections using the SelectionMode property. This tutorial show you how to choose multi items and move them to the other Listbox.
Working with List box in ASP.NET 2.0 and C#
The ListBox control enables you to display a list of items to the user that the user can select by clicking. A ListBox control can provide single or multiple selections using the SelectionMode property. This tutorial show you how to choose multi items and move them to the other Listbox.
Delete MutiRows with mouse drawing using ASP.NET and VB
This tutorial will show you how to delete multi-rows by drawing mouse.
Delete MutiRows with mouse drawing using ASP.NET and C#
This tutorial will show you how to delete multi-rows by drawing mouse.
Create a Gridview with Scroll using ASP.NET and VB
How to Create a Gridview with Scroll bar using ASP.NET 2.0 and VB is actually very simple
Create a Gridview with Scroll using ASP.NET and C#
How to Create a Gridview with Scroll bar using ASP.NET 2.0 and C# is actually very simple
Locate Controls using ASP.NET 2.0 and VB.NET
This tutorial will show you how to Locate Controls by ID using ASP.NET 2.0 and VB.NET
Locate Controls using ASP.NET 2.0 and C#
This tutorial will show you how to Locate Controls by ID using ASP.NET 2.0 and C#
Controls Server Event Handling using ASP.NET 2.0 and VB
This tutorial will show Controls how to Handle Server Event using ASP.NET 2.0 and VB.NET
Controls Server Event Handling using ASP.NET 2.0 and C#
This tutorial will show Controls how to Handle Server Event using ASP.NET 2.0 and C#
To display hierarchical data using ASP.NET 2.0 (VB.NET)
In this tutorial, we will demostrate how to use nested Repeater control to display hierarchical data using ASP.NET 2.0 and VB.NET. You can apply this usage to the other data binding controls as well. For instance, to let DataGrid nest DataGrid, DataList nest DataList etc.
To display hierarchical data using ASP.NET 2.0 and C#
In this tutorial, we will demostrate how to use nested Repeater control to display hierarchical data using ASP.NET 2.0 and C#. You can apply this usage to the other data binding controls as well. For instance, to let DataGrid nest DataGrid, DataList nest DataList etc.
Nesting the DropDownList to Gridview in ASP.NET 2.0(C#)
To nest the DropDownList control to GridView control is very helpful to show the data by selectable criteria. The DropDownList control can be easily nested to the GridView control. In this sample, each DropDownList is binded for different data. For instance, we can use GridView to show each category data in Northwind database, while we can use DropDownList to show all products under the selected category in each line. We will show you this tutorial by ASP.NET 2.0 and C#.
Nesting the DropDownList to Gridview in ASP.NET 2.0(VB)
To nest the DropDownList control to GridView control is very helpful to show the data by selectable criteria. The DropDownList control can be easily nested to the GridView control. In this sample, each DropDownList is binded for different data. For instance, we can use GridView to show each category data in Northwind database, while we can use DropDownList to show all products under the selected category in each line. We will show you this tutorial by ASP.NET 2.0 and VB.NET.
Working with wizard control in ASP.NET 2.0 and VB.NET
The ASP.NET Wizard control simplifies many of the tasks that are associated with building multiple forms and collecting user input. The Wizard control provides a simple mechanism that allows you to easily build steps, add a new step, or reorder the steps. You can build linear and non-linear navigation and customize the control's user navigation without writing code. In this tutorial, we will show you to create a contact step by step using wizard control in ASP.NET 2.0 and VB.NET.
Working with wizard control in ASP.NET 2.0 and C#
The ASP.NET Wizard control simplifies many of the tasks that are associated with building multiple forms and collecting user input. The Wizard control provides a simple mechanism that allows you to easily build steps, add a new step, or reorder the steps. You can build linear and non-linear navigation and customize the control's user navigation without writing code. In this tutorial, we will show you to create a contact step by step using wizard control in ASP.NET 2.0 and C#.
Working with BulletedList control in ASP.NET 2.0 and VB
This tutorial will show you how to use the control of BulletedList to show data in ASP.NET and VB.NET 2.0. BulletedList class can create a control that generates a list of items in a bulleted format.
Working with BulletedList control in ASP.NET 2.0 and C#
This tutorial will show you how to use the control of BulletedList to show data in ASP.NET 2.0 and C#. BulletedList class can create a control that generates a list of items in a bulleted format.
A sample to show globalization in ASP.NET 2.0 and VB
The System.Globalization namespace contains classes that define culture-related information, including the language, the country/region, the calendars in use, the format patterns for dates, currency, and numbers, and the sort order for strings. These classes are useful for writing globalized (internationalized) applications. We will show you a simple sample about how to write a globalized calendar in ASP.NET 2.0 and VB.NET.
A sample to show globalization in ASP.NET 2.0 and C#
The System.Globalization namespace contains classes that define culture-related information, including the language, the country/region, the calendars in use, the format patterns for dates, currency, and numbers, and the sort order for strings. These classes are useful for writing globalized (internationalized) applications. We will show you a simple sample about how to write a globalized calendar in ASP.NET 2.0 and C#.
DropDownList binding date using ASP.NET 2.0 and VB.NET
This tutorial will show you how to bind DropDownList with date in ASP.NET 2.0 and VB.NET.
DropDownList binding date using ASP.NET 2.0 and C#
This tutorial will show you how to bind DropDownList with date in ASP.NET 2.0 and C#.
Table Web server control in ASP.NET 2.0 (VB.NET)
The Table Web server control allows you to create server-programmable tables on ASP.NET pages. This tutorial will show you how to use Table Web server control in ASP.NET 2.0 and C#.
Table Web server control in ASP.NET 2.0 (C#)
The Table Web server control allows you to create server-programmable tables on ASP.NET pages. This tutorial will show you how to use Table Web server control in ASP.NET 2.0 and C#.
Using WebParts to create customizable web page (VB.NET)
Using ASP.NET 2.0 WebParts control, you can build customizable web pages for the end user. This tutorial will show you an example on using WebParts control to create a calendar which can be dragged and dropped from user interface.
Using WebParts to create customizable web page (C#)
Using ASP.NET 2.0 WebParts control, you can build customizable web pages for the end user. This tutorial will show you an example on using WebParts control to create a calendar which can be dragged and dropped from user interface.
How to use HtmlSelect Control in ASP.NET 2.0 (VB)
To use HtmlSelect control is very easy and helpful. This tutorial will show you how to use the HtmlSelect control in ASP.NET and VB.NET 2.0.
How to use HtmlSelect Control in ASP.NET 2.0 (C#)
To use HtmlSelect control is very easy and helpful. This tutorial will show you how to use the HtmlSelect control in ASP.NET 2.0 and C#.
SortDirection of the GridView in ASP.NET 2.0 (VB)
This tutorial will demonstrate how to use the SortDirection enumeration in ASP.NET and VB.NET 2.0 to determine the direction of items displayed by GridView control.
SortDirection of the GridView in ASP.NET 2.0 (C#)
This tutorial will demonstrate how to use the SortDirection enumeration in ASP.NET 2.0 and C# to determine the direction of items displayed by GridView control.
How to use repeater control in ASP.NET 2.0(VB.NET)
The Repeater control is used to display a repeated list of items that are bound to the control. It enable the customization of the layout by each repeated list of items. The Repeater control may be bound to a database table, an XML file, or another list of items. The Repeater control has no built-in select and edit support.
How to use repeater control in ASP.NET 2.0(C#)
The Repeater control is used to display a repeated list of items that are bound to the control. It enable the customization of the layout by each repeated list of items. The Repeater control may be bound to a database table, an XML file, or another list of items. The Repeater control has no built-in select and edit support.
A sample of invoking Win32 API in ASP.NET 2.0 (VB.NET)
This tutorial show you a simple example to explain how to invoke Win32 API in ASP.NET 2.0 and VB.NET.
A sample of invoking Win32 API in ASP.NET 2.0 (C#)
This tutorial show you a simple example to explain how to invoke Win32 API in ASP.NET 2.0 and C#.
Verification code to prevent auto signup in ASP.NET(VB)
By entering the verification code shown on the web page when a user sign up, the web site or application can prevent automated registrations. This reduces system loads and ensures better performance and security of web site or application. This tutorial will show you how to create the randomly generated verification code in ASP.NET 2.0 and VB.
Verification code to prevent auto signup in ASP.NET(C#)
By entering the verification code shown on the web page when a user sign up, the web site or application can prevent automated registrations. This reduces system loads and ensures better performance and security of web site or application. This tutorial will show you how to create the randomly generated verification code in ASP.NET 2.0 and C#.
WebClient to retrieve web page from URL in ASP.NET(VB)
This tutorial will show you how to use WebClient to retrieve web page with VB.NET in ASP.NET 2.0. The .NET framework provides an easy to use interface for retrieving resources from a specified URL.
WebClient to retrieve web page from URL in ASP.NET(C#)
This tutorial will show you how to use WebClient to retrieve web page with C# in ASP.NET 2.0. The .NET framework provides an easy to use interface for retrieving resources from a specified URL.
Create data table in ASP.NET 2.0(VB.NET)
This tutorial will show you how to create data table without SQL server in ASP.NET and VB.NET 2.0. This is very useful for storing temporary data.
Create data table in ASP.NET 2.0(C#)
This tutorial will show you how to create data table without SQL server in ASP.NET 2.0 and C#. This is very useful for storing temporary data.
GridView and DetailsView control in ASP.NET 2.0(VB.NET)
This tutorial will show you how to use a GridView control in combination with a DetailsView control in ASP.NET and VB.Net 2.0 to display master-detail information.
GridView and DetailsView control in ASP.NET 2.0(C#)
This tutorial will show you how to use a GridView control in combination with a DetailsView control in ASP.NET and C# to display master-detail information.
Use MultiView and View Control to perform Tabstrip(VB)
This tutorial will show you how to use MultiView Control and View Control to achieve Tabstrip in ASP.NET 2.0 and VB.Net.
Use MultiView and View Control to perform Tabstrip(C#)
This tutorial will show you how to use MultiView Control and View Control to achieve Tabstrip in ASP.NET 2.0 and C#.
SQL Database Driven Menu in ASP.Net (VB.NET)
This tutorial will show you how to bind a Menu Control to SQL Server database using VB.NET. By using this sample, you can create a database driven menu in ASP.Net.
SQL Database Driven Menu in ASP.NET (C#)
This tutorial will show you how to binding a Menu Control to SQL Server database using C#. By this sample, you can create a database driven menu in ASP.Net.
Creating Charts using ComponentArt.Charting and VB .NET
This tutorial will show you how to display graphics charts using ASP.NET 2.0, ComponentArt's Web.UI control, and VB.NET
Creating Charts using ComponentArt.Charting and C# .NET
This tutorial will show you how to display graphics charts using ASP.NET 2.0, ComponentArt's Web.UI control, and C#.NET
Creating dynamic controls using ASP.NET 2.0 and VB .NET
This tutorial will show you how to create dynamic, persistent, web controls on the fly using ASP.NET 2.0 and VB.NET
Creating dynamic controls using ASP.NET 2.0 and C# .NET
This tutorial will show you how to create dynamic, persistent, web controls on the fly using ASP.NET 2.0 and C#.NET



 
  Developer Resources







Server Intellect Rocks