文件名称:AJAX,初学者最实用
文件大小:3KB
文件格式:RAR
更新时间:2011-09-22 15:15:14
AJAX
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { //this.GridView1.AutoGenerateColumns = true; BoundField a=new BoundField(); a.DataField="ProductName"; a.HeaderText = "Name"; BoundField b=new BoundField(); b.DataField="SupplierID"; b.HeaderText = "Supplier"; this.GridView1.Columns.Add(a); this.GridView1.Columns.Add(b); this.GridView1.DataSourceID = this.SqlDataSource1.ID; this.GridView1.DataBind(); } protected void Button2_Click(object sender, EventArgs e) { this.Label2.Text = "AJAX"; //this.UpdatePanel2.Update(); } protected void Button1_Click(object sender, EventArgs e) { this.Label2.Text = "AJAX2"; } }
【文件预览】:
WebSite4
----Web.Config(3KB)
----App_Data()
----Default.aspx(3KB)
----Default.aspx.cs(1KB)