鄙人在CS文件中用到:Response.Write("<script>alert('请重新选择!');</script>");
当执行到该语句时,弹出了提示窗口,但是这时整个页面都变成空白了。
我不想让他出现这种情况,能否做到?!
前台页面
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!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:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="显示确认对话框" Width="140px" />
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="显示消息对话框" Width="153px" />
</form>
<asp:Label ID="Label1" runat="server" Text=""></asp:Label>
</body>
</html>
后台代码
using System;
using System.Data;
using System.Configuration;
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;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{//显示确认对话框
this.Label1.Text = "<script>if (confirm('确认您的注册信息吗?')){}else{}</script>";
}
protected void Button2_Click(object sender, EventArgs e)
{//显示消息对话框
this.Label1.Text = "<script language='javascript'> alert('谢谢您的合作!');</script>";
}
}