为了账号安全,请及时绑定邮箱和手机立即绑定

在AJAX中怎样实现调用后台方法AA()?

在AJAX中怎样实现调用后台方法AA()?

红颜莎娜 2018-09-18 05:06:57
<asp:ScriptManager ID="ScriptManager1" runat="server">        </asp:ScriptManager>        <asp:UpdatePanel ID="UpdatePanel1" runat="server">            <ContentTemplate>                                    <asp:Timer ID="Timer1" runat="server" Interval = "1000"></asp:Timer>            <asp:UpdateProgress ID="UpdateProgress1" runat="server">                <ProgressTemplate >                图片读取中......                </ProgressTemplate>                </asp:UpdateProgress>            </ContentTemplate>        </asp:UpdatePanel>在每次定时刷新后,希望调用后台的AA(),怎样实现?
查看完整描述

2 回答

?
皈依舞

TA贡献1851条经验 获得超3个赞

直接为timer绑定触发的方法即可。

protected void Timer1_Tick(object sender, EventArgs e)
   {
       //方法体
   }

调用AA()的话。在这个触发的方法里面调用吧。


查看完整回答
反对 回复 2018-09-25
?
智慧大石

TA贡献1946条经验 获得超3个赞

protected void Timer1_Tick(object sender, EventArgs e)
   {
       AA();
   }
public void AA()
{
}

查看完整回答
反对 回复 2018-09-25
  • 2 回答
  • 0 关注
  • 384 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信