本文介绍了HTML按钮就像一个ASP.NET按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用HTML按钮,像一个ASP.NET按钮?
与
=服务器
由于解决方案
HTML标签被称为HtmlControls,你需要处理 ServerClick
事件。
标记
<按钮ID =Button1的=服务器onserverclick =doIt方法>提交< /按钮>
后面
code
保护无效的doIt(对象发件人,EventArgs的发送)
{
回复于(的Hello World!);
}
How can i use HTML button like an ASP.NET Button?
解决方案
Html tags attributed with runat="server"
are called HtmlControls and you need to handle ServerClick
event.
Markup
<button id="button1" runat="server" onserverclick="doIt" >Submit</button>
Code behind
protected void doIt(object sender, EventArgs e)
{
Response.Write("Hello World!!!");
}
这篇关于HTML按钮就像一个ASP.NET按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!