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 > .NET Framework > Forum > search ข้อมูลผ่าน textbox Vb.net2008 แล้วแสดงใน datagridview



 

search ข้อมูลผ่าน textbox Vb.net2008 แล้วแสดงใน datagridview

 



Topic : 050749



โพสกระทู้ ( 3 )
บทความ ( 0 )



สถานะออฟไลน์




ผมต้องการทำหน้าเว็บ ให้สามารถ กรอกข้อมูลใน textbox เพื่อเป็นคีย์เวิร์ด search ข้อมูล แล้วคลิ้กปุ่มตกลงให้โปรแกรมสามารถแสดง
ข้อมูลออกมาที่กริดวิวครับ ช่วยแนะนำด้วยครับต้องทำอย่างไร รบกวนส่งโค้ดให้ด้วยครับ เพิ่งฝึกเขียน Vb ขอบคุณล่วงหน้าครับ



Tag : ASP.NET, Ms SQL Server 2005, Web (ASP.NET), VB.NET







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-10-26 11:49:18 By : tor_php View : 6854 Reply : 5
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

Code (VB.NET)
<%@ 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 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"
		AutoGenerateColumns="False" onRowDataBound="myGridView_RowDataBound">
            <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>


Go to : ASP.NET SQL Server Search Record






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-10-26 16:54:47 By : webmaster
 


 

No. 2



โพสกระทู้ ( 24 )
บทความ ( 0 )



สถานะออฟไลน์


แล้วถ้าเป็น windows form ล่ะค่ะ code เหมือนกันมั้ยค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-10-26 22:13:44 By : pimjai
 

 

No. 3



โพสกระทู้ ( 40 )
บทความ ( 0 )



สถานะออฟไลน์


ถ้าเปน Windows Form ผมเอา Code เฉพาะ ส่วน ข้างล่างนี้ไปใส่ครับ + แก้ไขเล็กน้อยให้เข้ากับ Database เรา

แต่ผมก็ยังติดปัญหา อยู่หลายแห่ง ครับ

e.Row.FindControl("lblCountryCode"),Label <<< อย่างเช่นในบรรทัดนี้ โปรแกรมไม่รู้จัก e ที่อยู่หน้า .row ผมก็ไม่เข้าใจเหมือนกันว่าทำไม

ผมก็ผึ้งฝึกหัดเขียนไม่มีความรู้่อะไร อยากได้วิธีที่ แสดงใน Gridview เหมือนกันครับ หามานานมากมายแล้วครับ

ผู้รู้ช่วยตอบที่นะครับ



Code (VB.NET)
Imports System.Data
Imports System.Data.OleDb		


		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 btnSearch_Click(sender As Object, e As EventArgs)
			BindData()
		End Sub

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-10-31 07:38:29 By : antipierce
 


 

No. 4

Guest


รบกวนถาม การใช้ combobox เขียนโค้ค คลิกข้อมูลที่ combobox แล้วแสดงรูปภาพ ที่ pictruebox ต้องทำอย่างไรครับต้องไปสร้างฐานข้อมูลด้วยหรือเปล่ารบกวนถามหน่อยครับพอดีหัดเขียนใหม่
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-28 15:51:16 By : หนึ่ง
 


 

No. 5



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook



Go to : VB.NET Win Form อยากได้โค้ดค้นหา Search ข้อมูลใน DataGridView ใครทราบช่วยบอกที
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-01-07 06:33:34 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : search ข้อมูลผ่าน textbox Vb.net2008 แล้วแสดงใน datagridview
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

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 อัตราราคา คลิกที่นี่