|
|
|
ขอตัวอย่าง ajax$asp.net ใช้ฐานข้อมูล sql server 2005 หน่อยงับ |
|
|
|
|
|
|
|
จา = จะ ฮ่วยข้อยล่ะหน่าย มันน่ารักตรงไหนเนี่ย
มันทำเหมือนกับที่ไม่ใช้ ajax นั้นแหละครับ ไม่แต่ต่าง
Ajax.aspx
<%@ 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>
Ajex.aspx.cs
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;
}
}
มันจะโหลดข้อมูลในส่วนที่อยู่ UpdatePanel โดยจะอัฟเดตเมื่อกด SearchButon ไป trig ให้มันทำงาน
โดยจะโหลดข้อมูลเฉพาะส่วนไม่ได้โหลดทั้งหน้า มันเลยเรียกว่า Asynchronous
|
|
|
|
|
Date :
2009-12-10 12:17:54 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สุดยอด
|
|
|
|
|
Date :
2011-01-14 18:20:42 |
By :
faisolp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|