首页上一页 1 下一页尾页 1 条记录 1/1页
asp.net中aspx的HTML用法
发表在ASP.NET图书答疑
2015-07-13
是否精华
是
否
版块置顶:
是
否
在aspx中添加按钮可以<asp:Button ID="Button1" runat="server" Text="Button" onclick="gch_Click" />
在cs文件中button的事件 protected void gch_Click(object sender, EventArgs e)
{
this.Label1.Text = "guochunhui";
}
在aspx工具箱中也有HTML控件可以使用,<input id="Button2" type="button" value="button" onclick="return Button2_onclick()" />,请问这个return Button2_onclick()事件怎么使用呢?
在cs文件中button的事件 protected void gch_Click(object sender, EventArgs e)
{
this.Label1.Text = "guochunhui";
}
在aspx工具箱中也有HTML控件可以使用,<input id="Button2" type="button" value="button" onclick="return Button2_onclick()" />,请问这个return Button2_onclick()事件怎么使用呢?