Data Binding ASP.Net Tutorial

HyperLink:      Each list item is rendered as a link to another page.
LinkButton:     Each list item is rendered by a LinkButton control.
Text:           Each list item is rendered as plain text.
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


    Show BulletedList HyperLinks


    
            id="blWebsites"
        DisplayMode="HyperLink"
        Target="_blank"
        Runat="server">
                    Text="Yahoo"
            Value="http://www.Yahoo.com" />
                    Text="Google"
            Value="http://www.Google.com" />
                    Text="asdf"
            Value="http://www.asdfasdfasdf.com" />
    
    


File: Web.config

  
             connectionString="Data Source=.\SQLEXPRESS;
         AttachDbFilename=|DataDirectory|MyDatabase.mdf;Integrated Security=True;User Instance=True" />