日期:2014-05-17 浏览次数:20443 次
protected void btn_add_Click(object sender, EventArgs e)
{
this.txt_add.Text += "添加_";
}
<form id="form1" runat="server">
<div>
<asp:Button ID="btn_add" runat="server" onclick="btn_add_Click" Text="累加" />
<asp:TextBox ID="txt_add" runat="server" Width="715px"></asp:TextBox>
</div>
</form>