代码如下 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>
答案 0 :(得分:0)
这只是您可以做的一个例子。
您可以执行以下操作。
{
ScriptManager.RegisterStartupScript(this, this.GetType(), "alert", "alert('Alert worked succesfully');window.location ='Admin/frmAdminHome.aspx';", true);
}
根据您的要求尝试代码