Server Intellect

Categorized By ASP.NET

Articles in Category: 'ASP.NET'

Learn How to use the CreateUserWizard control in ASP.NET 3.5 C#

Category: Web Development / ASP.NET

This tutorial will demonstrate how to use the CreateUserWizard control in ASP.NET 3.5 Web App C#. In this tutorial we will add a user account to the database using ASP.NET framework through the CreateUserWizard control. This allows users to add their own information to the user database and force them...

Continue reading >>

Learn How to Declarative Databind in a ASP.NET 3.5 Web Application C#.

Category: Web Development / ASP.NET

This tutorial will show you how bind a DataBound control to a DataSource control. This process is called declarative databinding. This allows ASP.NET Framework to handle all the messy details of deciding when to retrieve the data items represented by a DataSource control. Here is a snapshot of what the...

Continue reading >>

Inserting and Filtering Data using Custom Objects in C#

Category: Web Development / ASP.NET

Using Custom Objects to Manage Data in C# - Inserting and Filtering Introduction In the previous article, Creating Custom Objects in ASP.NET 3.5 and C# , we looked at how to create Custom Objectsand a Collection Class to display database data to a page. In this article, we will be building on this and...

Continue reading >>

Creating Custom Objects in ASP.NET 3.5 and C#

Category: Web Development / ASP.NET

Using Custom Objects and Collection Class for Binding Data - in C# Introduction This article will walk you through creating a custom object and collection class for that object, which will allow you to gain access to the custom properties and methods in the code-behind. Using objects makes it so much...

Continue reading >>

Install and Use Microsoft Chart Controls to Render a Graph from Data Table in C#

Category: Web Development / ASP.NET

Using MSChart to Create Graphical Charts in ASP.NET and C# Introduction In this article, we will be exploring the new addition to the .NET Framework: Microsoft Chart Controls, and how we can implement full-blown graphs and charts into our Web Applications using only ASP.NET - no need for third party...

Continue reading >>

Using SiteMap and MasterPages to set META Tags in ASP.NET and C#

Category: Web Development / ASP.NET

Using the SiteMap for SEO Purposes in ASP.NET 3.5 and C# Introduction Especially since the introduction of Web 2.0, a new emphasis has been made on SEO (Search Engine Optimization) for our web pages. Google, amongst others, have managed to organize the world's data so well, that it is becoming more and...

Continue reading >>

How to Protect Against SQL Injection Attacks in ASP.NET

Category: Web Development / ASP.NET

Protecting Against SQL Injection Attacks in ASP.NET Introduction Unscrupulous users can use poorly secured input forms as a means to gain access to and modify sensitive data, or even eliminate the whole database. This article will explain a number of precautions and methods to undertake to beef up the...

Continue reading >>

Using the Calendar Control as a Diary in ASP.NET

Category: Web Development / ASP.NET

Creating a Calendar-Controlled Diary in ASP.NET with C# Introduction In this article, we will look at using the Calendar control as part of an interface to manage a diary-type application. In conjunction with the FormView control, we will use the Calendar to display diary entries for specific days. We...

Continue reading >>

Returning Multiple Resultsets in VB.NET

Category: Web Development / ASP.NET

Returning Multiple Resultsets in VB.NET in ASP.NET 3.5 Introduction In this article, we will be looking at how we can create a class similar to the one in the Data Access Component article that will use just one database query to return two resultsets from a SQL database. This increases performance by...

Continue reading >>

Data Access Component to Update and Delete in C#

Category: Web Development / ASP.NET

Data Access Component to Update & Delete from SQL Database in ASP.NET 3.5 Introduction In this article, we will be looking at the Command Object and creating our own Data Access Component using the Object Data Source control. We will be using a SQL database, and then creating a class to represent...

Continue reading >>