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 Microsoft SQL Server (System.Data.SqlClient) > ASP.NET SQL Server Search Record Paging/Pagination



Clound SSD Virtual Server

ASP.NET SQL Server Search Record Paging/Pagination

ASP.NET SQL Server Search Record Paging/Pagination ตัวอย่างการเขียน ASP.NET ในการค้นหาข้อมูลจาก Database SQL Server และมีการแบ่งการค้นหาออกเป็นหน้า

Instance NameSpace

VB.NET
Imports System.Data 
Imports System.Data.SqlClient 


ASP.NET & System.Data.SqlClient

Language Code : VB.NET || C#

AspNetSQLServerSearchRecordPaging.aspx

<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.SqlClient"%>
<%@ Page Language="VB" %>
<script runat="server">
		Dim strKeyWord As String
		Sub Page_Load(sender As Object, e As EventArgs)
			strKeyWord = Me.txtKeyWord.Text
		End Sub

		Sub BindData()

			Dim objConn As New SqlConnection
			Dim objCmd As New SqlCommand
			Dim dtAdapter As New SqlDataAdapter
			Dim ds As New DataSet
			Dim strConnString,strSQL As String

			strConnString = "Server=localhost;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;"
			strSQL = "SELECT * FROM customer WHERE (Name like '%"& strKeyWord &"%' OR Email like '%"& strKeyWord &"%') "

			objConn.ConnectionString = strConnString
			With objCmd
			   .Connection = objConn
			   .CommandText = strSQL
			   .CommandType = CommandType.Text
			End With
			dtAdapter.SelectCommand = objCmd

			dtAdapter.Fill(ds)

			'*** BindData to GridView ***'
			myGridView.DataSource = ds
			myGridView.DataBind()

			dtAdapter = Nothing
			objConn.Close()
			objConn = Nothing

		End Sub

		Sub myGridView_RowDataBound(sender As Object, e As GridViewRowEventArgs)
			'*** CustomerID ***'
			Dim lblCustomerID As Label = CType(e.Row.FindControl("lblCustomerID"),Label)
			IF Not IsNothing(lblCustomerID) Then
			   lblCustomerID.Text = e.Row.DataItem("CustomerID")
			End IF

			'*** Email ***'
			Dim lblName As Label = CType(e.Row.FindControl("lblName"),Label)
			IF Not IsNothing(lblName) Then
			   lblName.Text = e.Row.DataItem("Name")
			End IF

			'*** Name ***'
			Dim lblEmail As Label = CType(e.Row.FindControl("lblEmail"),Label)
			IF Not IsNothing(lblEmail) Then
			   lblEmail.Text = e.Row.DataItem("Email")
			End IF

			'*** CountryCode ***'
			Dim lblCountryCode As Label = CType(e.Row.FindControl("lblCountryCode"),Label)
			IF Not IsNothing(lblCountryCode) Then
			   lblCountryCode.Text = e.Row.DataItem("CountryCode")
			End IF

			'*** Budget ***'
			Dim lblBudget As Label = CType(e.Row.FindControl("lblBudget"),Label)
			IF Not IsNothing(lblBudget) Then
			   lblBudget.Text = FormatNumber(e.Row.DataItem("Budget"),2)
			End IF

			'*** Used ***'
			Dim lblUsed As Label = CType(e.Row.FindControl("lblUsed"),Label)
			IF Not IsNothing(lblUsed) Then
			   lblUsed.Text = FormatNumber(e.Row.DataItem("Used"),2)
			End IF
			End Sub

		Sub ShowPageCommand(s As Object, e As GridViewPageEventArgs)
			myGridView.PageIndex = e.NewPageIndex
			BindData()
		End Sub

		Sub btnSearch_Click(sender As Object, e As EventArgs)
			BindData()
		End Sub

</script>
<html>
<head>
    <title>ThaiCreate.Com ASP.NET - SQL Server</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Label id="lblKeyword" runat="server" text="Keyword"></asp:Label>
        <asp:TextBox id="txtKeyWord" runat="server"></asp:TextBox>
        <asp:Button id="btnSearch" onclick="btnSearch_Click" runat="server" Text="Search"></asp:Button>
        <br />
        <br />
        <asp:GridView id="myGridView" runat="server" AllowPaging="True" AutoGenerateColumns="False" onRowDataBound="myGridView_RowDataBound" OnPageIndexChanging="ShowPageCommand" PageSize="2">
            <HeaderStyle backcolor="#cccccc"></HeaderStyle>
            <AlternatingRowStyle backcolor="#e8e8e8"></AlternatingRowStyle>
            <Columns>
                <asp:TemplateField HeaderText="CustomerID">
                    <ItemTemplate>
                        <asp:Label id="lblCustomerID" runat="server"></asp:Label> 
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Name">
                    <ItemTemplate>
                        <asp:Label id="lblName" runat="server"></asp:Label> 
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Email">
                    <ItemTemplate>
                        <asp:Label id="lblEmail" runat="server"></asp:Label> 
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="CountryCode">
                    <ItemTemplate>
                        <asp:Label id="lblCountryCode" runat="server"></asp:Label> 
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Budget">
                    <ItemTemplate>
                        <asp:Label id="lblBudget" runat="server"></asp:Label> 
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Used">
                    <ItemTemplate>
                        <asp:Label id="lblUsed" runat="server"></asp:Label> 
                    </ItemTemplate>
                </asp:TemplateField>
            </Columns>
        </asp:GridView>
    </form>
</body>
</html>


Screenshot

ASP.NET & SQL Server






   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-10-26 23:02:23 / 2009-07-19 08:43:02
  Download : Download  ASP.NET SQL Server Search Record Paging/Pagination
 Sponsored Links / Related

 
ASP.NET SQL Server Connect to Database
Rating :

 
ASP.NET SQL Server List Table Properties
Rating :

 
ASP.NET SQL Server List Record
Rating :

 
ASP.NET SQL Server & OleDb (System.Data.OleDb)
Rating :

 
ASP.NET SQL Server & Odbc (System.Data.Odbc)
Rating :

 
ASP.NET SQL Server Random Record
Rating :

 
ASP.NET SQL Server List Record Paging/Pagination
Rating :

 
ASP.NET SQL Server Search Record
Rating :

 
ASP.NET SQL Server Add/Insert Record
Rating :

 
ASP.NET SQL Server Add-Insert Multiple Record
Rating :

 
ASP.NET SQL Server Check Already Exists Add/Insert Record
Rating :

 
ASP.NET SQL Server Transaction (BeginTransaction,Commit,Rollback)
Rating :

 
ASP.NET SQL Server Edit/Update Record
Rating :

 
ASP.NET SQL Server Delete Record
Rating :

 
ASP.NET SQL Server Multiple Checkbox Delete Record
Rating :

 
ASP.NET SQL Server and GridView, DataSource
Rating :

 
ASP.NET SQL Server Database Class
Rating :

 
ASP.NET SQL Server Database Class (Visual Studio .Net 2003 - .NET 1.1)
Rating :

 
ASP.NET SQL Server Database Class (Visual Studio 2005,2008,2010 - .NET 2.0,3.5,4.0)
Rating :

 
ASP.NET SQL Server BLOB Binary Data and Parameterized Query
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 05
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 อัตราราคา คลิกที่นี่