关于datagrid中控件利用js调用后台方法事件的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于datagrid中控件利用js调用后台方法事件的问题相关的知识,希望对你有一定的参考价值。

前台调用后台方法除了用button的click事件,还可以用js调用

 一、前台页面如图

技术分享

 

需求点击这个按钮触发后台事件,从而能够调用存储过程

<epoint:HyperLinkColumn HeaderText="考评算分" Name="SetUp" NavigateText="<div class=‘small-icon small-icon-setting‘></div>"  IsAutoWidth="true">
                <ItemStyle HorizontalAlign="Center" Width="50px" />
                <ItemTemplate >
                   <div class=‘small-icon small-icon-setting‘ onclick="ShowSetting(‘<%#Convert.ToString(Eval("RowGuid"))%>‘);"></div>//调用js
                </ItemTemplate>
            </epoint:HyperLinkColumn>

 二、js方法

技术分享

 

pagemethod定义可以参考这个链接查看

1.页面中需要添加ScriptManager组件,然后将它的EnablePageMethods属性设置为True。

2.编写页面方法时也要向调用WebService一样,在方法前加[WebMethod],调用WebService与PageMethods其实是同出一辙,原理都是一样的。

  <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">
    </asp:ScriptManager>

技术分享

最后大功告成!

 

以上是关于关于datagrid中控件利用js调用后台方法事件的问题的主要内容,如果未能解决你的问题,请参考以下文章

wpf中datagrid选择改变事件中怎样绑定RadioButton的数据

ASP.NET jQuery 事件里调用后台方法

如何在js上运行Python脚本?或者,js怎么调用.py文件?

WPF 在datagrid模板列中添加用户控件,在后台如何快速的检索到该控件。急!!!

asp.net后台给动态button按钮写事件

winform WebBrowser控件中,cs后台代码执行动态生成的js