ASP.NET(vb.net) & DataList - DataBound Example scripts how to use DataList control in asp.net , The DataList.DataBound Occurs when an item is data bound to the DataList control
ShotDev Focus:
- ASP.NET(vb.net) & DataList - DataBound
Syntax
xxxxxxxxxxxxxxxxxxxxxx
Example
DataListDataBound.aspx
<%@ import Namespace="System.Data" %> <%@ import Namespace="System.Data.OleDb" %> <%@ Page Language="VB" %> <script runat="server"> Dim objConn As OleDbConnection Dim objCmd As OleDbCommand Sub Page_Load(sender As Object, e As EventArgs) Dim strConnString As String strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="& _ Server.MapPath("database/mydatabase.mdb")&";" objConn = New OleDbConnection(strConnString) objConn.Open() BindData() End Sub Sub BindData() Dim strSQL As String strSQL = "SELECT * FROM category" Dim dtReader As OleDbDataReader objCmd = New OleDbCommand(strSQL, objConn) dtReader = objCmd.ExecuteReader() '*** BindData to DataList ***' myDataList.DataSource = dtReader myDataList.DataBind() dtReader.Close() dtReader = Nothing End Sub Sub Page_UnLoad() objConn.Close() objConn = Nothing End Sub Private Sub myDataList_ItemDataBound(sender As Object, e As DataListItemEventArgs) '*** Image ***' Dim img As Image = CType(e.Item.FindControl("imgPicture"),Image) IF Not IsNothing(img) Then img.ImageURL = "images/" & e.Item.DataItem("Picture") 'img.Attributes.Add("OnClick","window.location='http://www.shotdev.com?Cateid="&e.Item.DataItem("CategoryID")&"'") 'img.Style.Add("cursor","hand") End IF '*** HyperLink ***' Dim hplCate As Hyperlink = CType(e.Item.FindControl("hplCategory"),Hyperlink) IF Not IsNothing(hplCate) Then hplCate.Text = e.Item.DataItem("CategoryName") hplCate.ToolTip = e.Item.DataItem("CategoryName") hplCate.Navigateurl = "http://www.shotdev.com?Cateid="&e.Item.DataItem("CategoryID") End IF End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <asp:DataList id="myDataList" onItemDataBound="myDataList_ItemDataBound" runat="server" RepeatColumns="2" cellpadding="2" cellspacing="2" borderstyle="inset"> <HeaderTemplate> <b>My Category</b><br/> </HeaderTemplate> <ItemTemplate> <div style="width:100px" align="center"> <asp:Image id="imgPicture" runat="server"></asp:Image> <br /> <asp:HyperLink id="hplCategory" runat="server"></asp:HyperLink> </div> </ItemTemplate> </asp:DataList> </form> </body> </html>
Create a asp.net file and save to path root-path/dotnet/
Run
http://localhost/dotnet/DataListDataBound.aspx
Screenshot
3workers…
…