|
|
|
การทำ Search แล้วแสดงผลในหน้าเดิม โดยใช้ GridView จะทำได้อย่างไรค่ะ |
|
|
|
|
|
|
|
ปกติ ASP.NET สามารถทำได้ไม่ยากเลยน่ะครับ แค่กำหนด Event ในปุ่มเท่านั้นครับ
ตัวอย่างการ Search
Code (C#)
strSQL = "SELECT * FROM customer WHERE (Name like '%"+ strKeyWord +"%' OR Email like '%"+ strKeyWord +"%') ";
objConn.ConnectionString = strConnString;
objCmd.Connection = objConn;
objCmd.CommandText = strSQL ;
objCmd.CommandType = CommandType.Text;
dtAdapter.SelectCommand = objCmd;
dtAdapter.Fill(ds);
//*** BindData to GridView ***//
myGridView.DataSource = ds;
myGridView.DataBind();
Go to : (C#) ASP.NET SQL Server Search Record
|
|
|
|
|
Date :
2011-08-15 12:48:52 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นั่นดิ ทำให้อยู่ในหน้าเดียว ง่ายกว่า ให้อยู่คนละหน้าอีก
|
|
|
|
|
Date :
2011-08-15 13:27:52 |
By :
watcharop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// remove
|
|
|
|
|
Date :
2012-01-10 08:16:37 |
By :
shelly |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ Captcha แล้วยังหลุดมาได้ อีกครับ แฮะ ๆ
|
|
|
|
|
Date :
2012-01-10 08:51:02 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่วินค่ะ อยากได้โค้ด วิธีการ Search แบบตังอย่างที่พี่วินโพสให้ แต่โค้ด อยากได้โค้ด vb.net ที่เป็นแบบอื่นค่ะ โดยโค้ดที่ไม่ใช้ เกี่ยวกับCommand แล้วก็ DataSource
|
|
|
|
|
Date :
2012-04-27 09:23:40 |
By :
beem |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วแบบคนละหน้าทำยังไงอ่ะค่ะ
|
|
|
|
|
Date :
2014-04-07 10:46:13 |
By :
FSG |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|