码迷,mamicode.com
首页 > Web开发 > 详细

ASPX 后台调用前台Js

时间:2014-12-23 19:03:09      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

1、UpdatePanel 使用中

protected void Button1_Click(object sender, EventArgs e)
{
this.Label1.Text = "测试时间:" + DateTime.Now.ToString();

ScriptManager.RegisterStartupScript(UpdatePanel1, UpdatePanel1.GetType(),"testalert", "<script>Test();</script>", false);
}

2、UpdatePanel 没有使用

protected void Button1_Click(object sender, EventArgs e)
{
    this.Label1.Text = "测试时间:" + DateTime.Now.ToString();
    ClientScriptManager cs = this.ClientScript;
    cs.RegisterStartupScript(this.GetType(), "HelloWorld", "<script>alert(‘test alert‘);</script>");
}

ASPX 后台调用前台Js

标签:

原文地址:http://www.cnblogs.com/tianjinquan/p/4180609.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!