使用Javascript的警报消息

时间:2012-12-02 17:59:20

标签: asp.net

我正在使用使用java-script的警报消息在某些条件不满足时显示某种警告。我唯一的问题是当弹出警报消息并且用户阅读消息并单击“确定”时,它会返回到原始页面,但页面会转移到左侧。通常我的页面显示在中心,但只有当java脚本运行时它才会转移到页面的左侧。如果我复制相同的URL并粘贴到另一个页面,那么所有内容都将对齐并显示在中心。我怎样才能解决这个问题?是否有另一个警报消息,如jquery或其他工作正常的。 PLS。救命。 thnaks

  using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Mail;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Web.Security;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using AjaxControlToolkit;
using System.Data.SqlClient;
using System.Configuration;
using System.Collections;
using System.Web.Routing;

public partial class HomePage : System.Web.UI.Page
{


    protected void Page_Load(object sender, EventArgs e)
    {
        string ID = Page.RouteData.Values["ID"] as string;

        if (!IsPostBack)
        {

            BindData_Action();

        }       
    }


protected void btnApproval_Click(object sender, EventArgs e)
    {

        SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["TestConnectionString"].ConnectionString);
        SqlDataAdapter da = new SqlDataAdapter("SELECT ID, Description, Target_Date FROM MyTable  WHERE ID = '" + Request.QueryString["ID"] + "'", con);
        DataTable dt = new DataTable();
        da.Fill(dt);
        if (dt.Rows.Count > 0)
        {

         //if the condition above is true i am sending an email

        }
        else
        {
            Response.Write("<script>alert('Before requesting Approval additional info.  Thanks');</script>");
        }
    }

}

1 个答案:

答案 0 :(得分:1)

使用Response.Write可以为您的样式做一些时髦的事情。不要在C#代码中执行,而是单独打开javascript。

一种方法是在C#中使用RegisterStartUpScript - 这告诉编译器在页面加载后运行此脚本:

If (!Page.ClientScript.IsStartupScriptRegistered("showAlert") {
    Page.ClientScript.RegisterStartupScript(Page.GetType(), "showAlert", "showAlert();", True);
}

然后,在页面上的C#代码部分结束后,添加以下内容:

<script type="text/javascript">
    function showAlert() {
        alert('Before requesting Approval, you MUST add at least one Action Item.  Thanks');
    }
</script>

所有这一切都是分离出你在Response.Write中的javascript。