using System;
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;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e) // 当 页面 加载时 发生
{
}
protected void Button1_Click(object sender, EventArgs e) // button1 单击事件
{
string s = "你输入了:";
// 将 Label1 的 Text 属性 设置为 给定的 字符串
this.Label1.Text = s + this.TextBox1.Text;
}
}
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;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e) // 当 页面 加载时 发生
{
}
protected void Button1_Click(object sender, EventArgs e) // button1 单击事件
{
string s = "你输入了:";
// 将 Label1 的 Text 属性 设置为 给定的 字符串
this.Label1.Text = s + this.TextBox1.Text;
}
}
本文介绍了一个简单的 ASP.NET Web 应用示例,演示如何通过按钮点击事件更新页面上的标签文本。此示例使用了多种命名空间,如 System 和 System.Web.UI,展示了基本的 Web 开发流程。

被折叠的 条评论
为什么被折叠?



