<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Ajax.aspx.cs" Inherits="Ajax" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Untitled Page</title> <script type="text/javascript"> function pageLoad() { } </script> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <asp:TextBox ID="SearchBox" runat="server"></asp:TextBox> <asp:Button ID="SearchButton" runat="server" Text="SearchButton" /> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:GridView ID="GridView1" runat="server"> </asp:GridView> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="SearchButton" EventName="Click" /> </Triggers> </asp:UpdatePanel> </div> </form> </body> </html>
using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Data.SqlClient; using System.Web.Configuration; public partial class Ajax : System.Web.UI.Page { private SqlConnection sqlConnection; protected void Page_Load(object sender, EventArgs e) { string sqlConnectionString = WebConfigurationManager.ConnectionStrings["SqlConnectionString"].ToString(); sqlConnection = new SqlConnection(sqlConnectionString); SearchButton.Click += new EventHandler(SearchButton_Click); } protected void SearchButton_Click(object sender, EventArgs e) { GridView1.DataSource = GetCustomer(SearchBox.Text); GridView1.DataBind(); } private DataTable GetCustomer(string Keyword) { DataTable Dt = new DataTable(); string sqlCommandString = "Select * From [Customer] Where [CustomerName] Like @CustomerName"; SqlCommand sqlCommand = new SqlCommand(sqlCommandString, sqlConnection); sqlCommand.Parameters.Add("@CustomerName", SqlDbType.NVarChar); sqlCommand.Parameters["@CustomerName"].Value = "%" + Keyword + "%"; try { SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand); sqlDataAdapter.Fill(Dt); } catch (Exception ex) { return null; } return Dt; } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง