如何在asp.net中的Repsonse.Write中编写Bootstrap Autocloseable alert msg?

时间:2015-03-31 13:13:03

标签: asp.net twitter-bootstrap

代码如下 Login.aspx.cs文件

protected void btnLogin_Click(object sender, EventArgs e)
{
 Response.Write("<script>alert('Login Sucessfully');</script>"); //how to write bootstrap above code in it.
 Response.Redirect("~/Admin/frmAdminHome.aspx");
}

我想在Response.Write中编写bootstrap autoclosable alert msg 引导代码为

<div id="alertdiv" class="alert ' + alerttype + '"><a class="close" data-dismiss="alert">×</a><span>' + message + '</span></div>

1 个答案:

答案 0 :(得分:0)

这只是您可以做的一个例子。

您可以执行以下操作。

{
   ScriptManager.RegisterStartupScript(this, this.GetType(), "alert", "alert('Alert worked succesfully');window.location ='Admin/frmAdminHome.aspx';", true);
}

根据您的要求尝试代码