本文介绍了如何使用c#代码在代码隐藏文件中为锚标记的onclick事件编写事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用c#代码在代码隐藏文件中为锚标记的onclick事件编写事件。



< a id =ascaleUpgarderunat =server önclick=fnSetNewControlshref =〜/ frmSignOn.aspx>规模升级





如何在C#中为onclick写事件。

注意:我不想使用javascript。

How to write event in Code behind file for onclick event of anchor tag using c# code.

<a id="ascaleUpgarde" runat="server" önclick="fnSetNewControls" href="~/frmSignOn.aspx" >Scale Upgrade


how to write event in C# for onclick.
Note: I dont want to use javascript.

推荐答案

try this one also it will work :)




<a id="ascaleUpgarde" runat="server">
 href="#">Scale Upgrade</a>




and in the code behind write this 







protected void Page_Load(object sender, EventArgs e)
{
    ascaleUpgarde.ServerClick +=new EventHandler(fnSetNewControls_Click);
}
protected void fnSetNewControls_Click(object sender, EventArgs e)
{
    Response.Write("<script>alert('test')</script>");
}




这篇关于如何使用c#代码在代码隐藏文件中为锚标记的onclick事件编写事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 06:31