Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > ASP.NET > ASP.NET DataList Control > ASP.NET DataList Control - DataBound



Clound SSD Virtual Server

ASP.NET DataList Control - DataBound

ASP.NET DataList Control - DataBound จากตัวอย่างก่อนหน้านี้จะเป็นการให้ DataList ทำการอ่านค่าของ DataItem ในส่วนของแต่ล่ะฟิวด์ แต่วิธีนี้คือเราไม่สามารถควบคุมหรือเพิ่มคุณสมบัติของ Control ใน แต่ล่ะ Item ได้ ซึ่งตัวอย่างนี้ผมได้ยกตัวอย่างการใช้ Event ของ ItemDataBound มาเพื่อใช้จัดการ Control ใน DataList

Language Code : VB.NET || C#

Framework : 1,2,3,4


DataListItemDataBound.aspx

<%@ Page Language="VB" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.OleDb" %>
<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 = e.Item.DataItem("Picture")
			'img.Attributes.Add("OnClick","window.location='https://www.thaicreate.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 = "https://www.thaicreate.com?Cateid="&e.Item.DataItem("CategoryID")
		End IF
	End Sub

</script>
<html>
<head>
    <title>ThaiCreate.Com ASP.NET - DataList</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>


จากตัวอย่าง ItemDataBound จะทำการอ่าน Label ที่อยู่ใน DataList และทำการ กำหนดค่าให้แค่ล่ะ Column ซึ่งโปรแกรมจะทำการวนลูปตามจำนวน Record ของข้อมูล

Screenshot

ASP.NET DataList Control






   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-11-12 06:56:00 / 2009-06-03 00:47:51
  Download : Download  ASP.NET DataList Control - DataBound
 Sponsored Links / Related

 
ASP.NET DataList Control
Rating :

 
ASP.NET DataList Control - DataBind
Rating :

 
ASP.NET DataList Control - Repeat Multiple Columns
Rating :

 
ASP.NET DataList Control - DataSet,DataTable,TableRows
Rating :

 
ASP.NET DataList Control - FindControl
Rating :

 
ASP.NET DataList Control - ItemCommand
Rating :

 
ASP.NET DataList Control - XML
Rating :

 
ASP.NET DataList Control - AccessDataSource
Rating :

 
ASP.NET DataList Control - VS .NET 2003 (FX 1.1)
Rating :

 
ASP.NET DataList Control - ItemCommand VS .NET 2003 (FX 1.1)
Rating :

 
ASP.NET DataList Control - VS 2005,2008,2010 (FX 2.0,3.5,4.0)
Rating :

 
ASP.NET DataList Control - ItemCommand VS 2005,2008,2010 (FX 2.0,3.5,4.0)
Rating :

 
ASP.NET DataList Control - Microsoft Access (.mdb) - System.Data.OleDb
Rating :

 
ASP.NET DataList Control - SQL Server 2000,2005,2008 - System.Data.SqlClient
Rating :

 
ASP.NET DataList Control - MySQL Database - MySql.Data.MySqlClient
Rating :

 
ASP.NET DataList Control - Oracle Database - System.Data.OracleClient
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่