ASP.NET
  Home arrow ASP.NET arrow Page 2 - Introduction to ASP.NET 2.0 SqlDataSource ...
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ASP.NET

Introduction to ASP.NET 2.0 SqlDataSource Control
By: Michael Youssef
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 14
    2007-10-08

    Table of Contents:
  • Introduction to ASP.NET 2.0 SqlDataSource Control
  • Accessing the Northwind database using SqlDataSource
  • Adding a GridView to the Page
  • What has been written for us by VS.NET 2005?

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Introduction to ASP.NET 2.0 SqlDataSource Control - Accessing the Northwind database using SqlDataSource


    (Page 2 of 4 )

    Start by creating a new ASP.NET web site by launching VS.NET 2005 and selecting File --> New --> Web Site. You will get the following dialog box.

    Place the web site folder on the file system and select Visual C# as the coding language. We are not going to write any code in this article, but I'm a C# guy as you might be too. Switch to design view and drag the SqlDataSource Control to the page from the Data section of the Toolbox.

    Now the SqlDataSource control is on the form and we need to configure it. You will note that there is a menu shown at the upper right corner of the control; this is called the task menu and you are going to see it a lot with other controls. It's used to configure some options of the control.

    Click on Configure Data Source from the task menu of the SqlDataSource control and you will get the following dialog.

    This dialog is used to choose the connection that the SqlDataSource control will use to get to the database. Since we didn't create any connections yet, click on the New Connection button to create a new connection. Note that if you have any connections in the Server Explorer they will be shown in the drop-down list. The following dialog will be shown.

    This dialog is used to choose the Data Provider for the data access objects that the control creates, which depends on the Data Source. Choose Microsoft SQL Server to connect to your local SQL Server. Click on the Continue button.

    The Add Connection dialog is shown. Select your server name and after that the database to which you want to connect. Now test the connection.

    And when you click on the Test Connection button you will get the following message.

    Now click OK, then OK to the Add Connection dialog, and you will return to the Configure Data Source dialog box -- but this time with the connection configured.

    Click Next and you will get the following dialog box.

    This dialog box asks you if you want to save the connection string in the web site configuration file. Simply put, a configuration file (which is named Web.Config) is used to configure ASP.NET web sites. Among those configurations is the connection string, which a connection object uses to know where the database server is and what database you want to access. You can find out more on connection strings in my articles about ADO.NET with ASP.NET 2.0; for now just click Next.

    This dialog is used to build the T-SQL query used by the SqlDataSource control to retrieve the data. You have two options: you can write the T-SQL statement yourself or you can use the second option, the default option, which provides you with a tool that writes the query for you. In this example we will be using the second option which will write the T-SQL code for us. Select the Employees table from the drop-down list and select the following columns to be included in the query: EmployeeID, LastName, FirstName, Title, HomePhone.

    Note that the T-SQL SELECT statement has been written in the preview section of the dialog, click on Next.

    Now you can test to find out whether your query returns a result set by clicking on the TestQuery button as shown in the above screenshot. Click on finish and it's done; we now have a ready-to-use SqlDataSource object. Up to this point we didn't add the control that will use the SqlDataSource control to display the data on the page. So let's do it.

    More ASP.NET Articles
    More By Michael Youssef


       · I hope you like this article. In the upcoming few articles, we talk about how to...
     

    ASP.NET ARTICLES

    - Adding Content to a Static ASP.NET Website
    - Building a Static ASP.NET Website in a Basic...
    - Develop Your First ASP.NET Website with Visu...
    - Run ASP.NET in Windows XP Home with Cassini ...
    - How to Test a Web Application
    - How to Add Code and Validation Controls to a...
    - Working in Source and Split Views to Build a...
    - How to Build a Web Form for a One-Page Web A...
    - How to Develop a One-Page Web Application
    - An ASP.NET Web Application in Action
    - Developing ASP.NET Web Applications
    - An Introduction to ASP.NET Web Programming
    - Introduction to the ADO.NET Entity Framework...
    - Completing an In-Text Advertising System und...
    - Programming an In-Text Advertising System un...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek