UpdatePanel中Response.Write()

本文介绍如何在使用Ajax支持的网站中解决通过Response.Write()无法弹出提示对话框的问题,通过Page.ClientScript.RegisterStartupScript函数实现客户端脚本的注入。
摘要由CSDN通过智能技术生成
在ajax支持的网站中如或想使用Response.Write(“”),弹出一个提示对话框,没有效果。解决方法如下

Page.ClientScript.RegisterStartupScript
    函数原型:System.Web.UI.ScriptManager.RegisterStartupScript(Contrl control, Type type,string key,string script, bool addScriptTags);
    参数:control要要注册此段javascript语句的控件ID,如下面示例的按钮ID test一般直接用this.GetType()即可
    key为要执行的javascirpt语句起的UpdatePanel中的Response.Write()问题.RegisterStartupScript(btnUnReport, this.GetType(), "unReport", "alert('撤销上报操作失败,请勾选要上交的课题!');window.close();", true);

示例:
Asp:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="WebForm1.aspx.cs" Inherits="WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> 
        <div> 
        <asp:UpdatePanel ID="UpdatePanel1" runat="server"> 
            <ContentTemplate> 
                <asp:Button ID="test" runat="server" Text="test" OnClick="test_Click" /> 
            </ContentTemplate> 
        </asp:UpdatePanel> 
    </div>

    </form>
</body>
</html>

asp.cs:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

using System.Web.Script.Serialization;

    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

         }

        protected void test_Click(object sender, EventArgs e)
        {            
ScriptManager.RegisterStartupScript(This.UpdatePanel1,this.GetType(),"masg1","alert('Hello!');",true)

         }

     }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值