如何在visual studio 2012中通过html按钮调用以下cs函数

本文关键字:调用 按钮 html 函数 cs visual studio 2012 | 更新日期: 2023-09-27 18:13:15

protected void Button1_Click(object sender, EventArgs e)
{
        // C# code for SQL connection
} 
<input id="Button2" type="button" value="Pakistan"  onclick ="Button1_Click()" />

如何在visual studio 2012中通过html按钮调用以下cs函数

如果你坚持使用Input type Button而不是普通的Asp:Button

<input id="Button2" type="button" value="Pakistan" onclick ="button2();"/>
<script>
function button2()
{
   __doPostBack('Button2', 'postback')
}
</script>

现在在你的页面加载在c#代码后面的文件:

保护无效Page_Load(对象发送者,EventArgs e){

if (Request["__EVENTTARGET"]=="Button2")
{
//call the Code for Sql Connection
}

}