ASP.NET
  Home arrow ASP.NET arrow Page 3 - Learning More About Binding Data to Contro...
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  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
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

Learning More About Binding Data to Controls
By: McGraw-Hill/Osborne
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 8
    2006-05-04

    Table of Contents:
  • Learning More About Binding Data to Controls
  • List Box
  • Hyperlinks
  • Quiz

  • 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


    Learning More About Binding Data to Controls - Hyperlinks


    (Page 3 of 4 )

    A very common practice is to dynamically create hyperlinks on a web page. As you’ll remember from when you learned HTML, a hyperlink consists of at least two attributes. The first is the text or image that appears on the web page, and the second is the URL that is called when the visitor selects the hyperlink.

    In the next example, both attributes are stored in a column of a table and are then bound to a Repeater control in the Page_Load subroutine when the web page is loaded.

    Let’s modify the Customers table (see Chapter 11) by inserting the following two columns so that we can use those columns in the next example:

    • CustomerCompany CHAR(30)
    • CustomerURL CHAR(30)

    Statements in the Page_Load subroutine are nearly the same as those you saw earlier in the case of the Repeater control (see the earlier section “The Repeater Control”), except the query returns the CustomerCompany and the CustomerURL from the Customers table.

    Statements in the web page are also similar to statements you saw in the web page of the Repeater control, except for the HyperLink control within the ItemTemplate. We assign column names to the Text attribute and to the NavigateURL attribute.

    The CustomerCompany column is assigned to the Text attribute, and the CustomerURL column is assigned to NavigateURL. This is called when the visitor selects the hyperlink.

    <%@ Import Namespace="System.Data.SqlClient" %>
    <Script Runat="Server">
    Sub Page_Load
     
    If Not IsPostBack Then
       
    Dim conCust As SqlConnection
       
    Dim cmdSelectRows As SqlCommand
       
    Dim dtrCust As SqlDataReader
       
    conCust = New SqlConnection( "Server=localhost;UID=
    MyID;PWD=MyPassword;Database=CustomerContact Data")
       
    cmdSelectRows = New SqlCommand(
           
    "Select CustomerCompany, CustomerURL From Customers", 
            
    conCust)
       
    conCust.Open()
       
    dtrCust = cmdSelectRows.ExecuteReader()
        hyperLinks.DataSource = dtrCust
       
    hyperLinks.DataBind()
       
    dtrCust.Close()
       
    conCust.Close()
      End If
    End Sub
    </Script>
    <html>
      
    <head><title>Hyperlink Data Binding</title></head>
      
    <body>
      
    <form Runat="Server">
         
    <asp:Repeater ID="hyperLinks" Runat="Server">
            
    <ItemTemplate>
              
    <ASP:HyperLink Text='<%# Container.DataItem("CustomerCompany") %>'
    NavigateURL='<%# Container.DataItem("CustomerURL") %>' Runat="Server" />
            
    </ItemTemplate>
         
    </asp:Repeater>
      
    </form>
      
    </body>
    </html>

    More ASP.NET Articles
    More By McGraw-Hill/Osborne


       · This article is an excerpt from the book "ASP.NET 2.0 DeMYSTiFieD," published by...
     

    Buy this book now. This article is excerpted from chapter 12 of ASP.NET 2.0 DeMYSTiFieD, written by Jim Keogh (McGraw-Hill/Osborne; ISBN: 0072261412). Check it out today at your favorite bookstore. Buy this book now.

    ASP.NET ARTICLES

    - Developing a Mini ASP.NET AJAX Server Centri...
    - Disadvantages of the ASP.NET MVC Framework
    - Advantages of the ASP.NET MVC Approach
    - ASP.NET Web Forms Weaknesses
    - ASP.NET Web Forms Meets ASP.NET MVC
    - Source Code for Saving and Retrieving Data w...
    - Using GridView to Save and Retrieve Data wit...
    - Handling Dynamic Images in ASP.NET 3.5 AJAX ...
    - Retrieving Data with AJAX and the GridView C...
    - Playing with Images in ASP.NET 3.5 AJAX Appl...
    - Saving and Retrieving Data with AJAX
    - Enhancing PHP Via the ASP.NET AJAX Framework...
    - Enhancing PHP Programming with the ASP.NET A...
    - Classes and ASP.NET AJAX
    - Using ASP.NET AJAX

     
    Best Practices for Windows Vista Migration Presentation
    Dell and Microsoft recently held a series of face-to-face seminars entitled, &qu....

     
    Creating a Culture for Code Reuse
    If you oversee development teams you know that like it or not proprietary and ex....

     
    Keys to Web Application Acceleration: Advances in Delivery Systems
    Accelerate Web apps by up to 5x. Ensure significantly faster access to the Web a....

     
    Optimizing Application Monitoring
    Tired of finding out from your customers that you're offline? This white paper e....

     
    Solaris to Solaris Migration -- Migrating applications from Sun SPARC to Dell PowerEdge R900
    This comprehensive Migration Guide reviews the approach that Principled Technolo....

     




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
    Stay green...Green IT