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,037

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



Clound SSD Virtual Server

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

ASP.NET DataList Control - Visual Studio 2005,2008,2010 (Framework 2.0,3.5,4.0) จากตัวอย่างก่อนหน้านี้จะเป็นการใช้งาน DataList และเขียนในรูปแบบของ ASP Style คือเขียนร่วมกับกับส่วนของ HTML Element แต่ในตัวอย่างนี้ผมได้ยกการเขียนร่วมกับ Visual Studio 2005,2008,2010 ซึ่ง Run บน Framework 2.0,3.5,4.0 ในรูปแบบของ Code-Behind แยกในส่วนของ Tag และ Code ไว้คนล่ะส่วน

Language Code : VB.NET || C#

Framework : 2,3,4


DataList1.aspx

01.<%@ Page Language="VB" AutoEventWireup="false" CodeFile="DataList1.aspx.vb" Inherits="DataList1" %>
02. 
03.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
04. 
05.<html xmlns="http://www.w3.org/1999/xhtml" >
06.<head runat="server">
07.    <title>ThaiCreate.Com ASP.NET - DataList</title>
08.</head>
09.<body>
10.    <form id="form1" runat="server">
11.    <asp:DataList id="myDataList" runat="server" RepeatColumns="2">
12.        <HeaderTemplate>
13.            <b>My Category</b><br/>
14.        </HeaderTemplate>
15.        <ItemTemplate>
16.            <div style="width:100px" align="center">
17.                <asp:Image id="imgPicture" runat="server"></asp:Image>
18.                <br />
19.                <asp:HyperLink id="hplCategory" runat="server"></asp:HyperLink>
20.            </div>
21.        </ItemTemplate>
22.    </asp:DataList>
23.    </form>
24.</body>
25.</html>



DataList1.aspx.vb

01.Imports System.Data
02.Imports System.Data.OleDb
03.Partial Class DataList1
04.    Inherits System.Web.UI.Page
05. 
06.    Dim objConn As OleDbConnection
07.    Dim objCmd As OleDbCommand
08. 
09.    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
10.        Dim strConnString As String
11.        strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
12.        Server.MapPath("database/mydatabase.mdb") & ";"
13.        objConn = New OleDbConnection(strConnString)
14.        objConn.Open()
15. 
16.        BindData()
17.    End Sub
18. 
19.    Protected Sub BindData()
20.        Dim strSQL As String
21.        strSQL = "SELECT * FROM category"
22. 
23.        Dim dtReader As OleDbDataReader
24.        objCmd = New OleDbCommand(strSQL, objConn)
25.        dtReader = objCmd.ExecuteReader()
26. 
27.        '*** BindData to DataList ***'
28.        myDataList.DataSource = dtReader
29.        myDataList.DataBind()
30. 
31.        dtReader.Close()
32.        dtReader = Nothing
33. 
34.    End Sub
35. 
36.    Protected Sub Page_Unload(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Unload
37.        objConn.Close()
38.        objConn = Nothing
39.    End Sub
40. 
41.    Protected Sub myDataList_ItemDataBound(ByVal sender As Object, ByVal e As DataListItemEventArgs) Handles myDataList.ItemDataBound
42.        '*** Image ***'
43.        Dim img As Image = CType(e.Item.FindControl("imgPicture"), Image)
44.        If Not IsNothing(img) Then
45.            img.ImageUrl = e.Item.DataItem("Picture")
46.            'img.Attributes.Add("OnClick","window.location='https://www.thaicreate.com?CateID="&e.Item.DataItem("CategoryID")&"'")
47.            'img.Style.Add("cursor","hand")
48.        End If
49. 
50.        '*** HyperLink ***'    
51.        Dim hplCate As HyperLink = CType(e.Item.FindControl("hplCategory"), HyperLink)
52.        If Not IsNothing(hplCate) Then
53.            hplCate.Text = e.Item.DataItem("CategoryName")
54.            hplCate.ToolTip = e.Item.DataItem("CategoryName")
55.            hplCate.NavigateUrl = "https://www.thaicreate.com?CateID=" & e.Item.DataItem("CategoryID")
56.        End If
57.    End Sub
58.End Class


Screenshot

ASP.NET DataList Control






   
Hate it
Don't like it
It's ok
Like it
Love it
Total Votes: 685Overall Rating: 3.8 / 5
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-11-05 18:37:23 / 2010-07-10 14:03:33
  Download : Download  ASP.NET DataList Control - VS 2005,2008,2010 (FX 2.0,3.5,4.0)
 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 - DataBound
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 - 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 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่