如果单击非服务器控件超链接,则调用事件背后的代码吗?

发布于 2024-11-15 00:58:46 字数 197 浏览 2 评论 0原文

如果您有一个标准的超链接...

<a href="somelink"> message </a>

...并且此链接不在表单 runat="server" 标记内, 你也不能把它放进去,你知道吗 任何可能的方式将此标签的点击事件绑定到 代码隐藏方法?

If you have a standard hyperlink...

<a href="somelink"> message </a>

...and this link is not inside a form runat="server" tag,
and you can't put it inside one, either, would you know of
any possible way to tie the click event for this tag to a
code-behind method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花桑 2024-11-22 00:58:46

要在客户端事件上调用服务器端方法,您需要执行以下操作:

1- 创建服务器端方法:

void DoSomething(...) { ... }

2- 实现采用一个字符串的 System.Web.UI.IPostBackEventHandler.RaisePostBackEvent参数(您可以将名称分配给该参数的值)。:

public void RaisePostBackEvent(string eventArgument) 
{
        DoSomething(...);
}

3- 编写脚本来触发回发:

function TriggerPostBack(control, arg){
    __doPostBack(control, arg);
}

4- 在需要时调用回发触发函数:

<a .... onclick="TriggerPostBack('control', 'arg')" .. /> 

To call a server side method on a client side event you need to do the following:

1- Create the server side method:

void DoSomething(...) { ... }

2- Implement the System.Web.UI.IPostBackEventHandler.RaisePostBackEvent which take one string argument (You can assign the name to the value of this argument).:

public void RaisePostBackEvent(string eventArgument) 
{
        DoSomething(...);
}

3- Write a script to trigger post back:

function TriggerPostBack(control, arg){
    __doPostBack(control, arg);
}

4- Call the PostBack trigger function when needed:

<a .... onclick="TriggerPostBack('control', 'arg')" .. /> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文