Я пытаюсь получить предупреждение, которое показывает «Неверный пароль и пароль», если не удается войти в систему, но проблема заключается в том, как запустить оповещение со стороны сервера. Я думаю, что я должен вызвать функцию javascript со стороны сервера. Я попробовал это, но это не работает. Я также другое предупреждение для "Пожалуйста, свяжитесь с менеджером" Вот мой код ниже то, что пытаются сделать, это вызвать нажатие кнопки со стороны сервера, чтобы активировать предупреждение, но оно не работает, а
Вот код на стороне сервера
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.Sql;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
SqlConnection cn = new SqlConnection(@"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True");
SqlCommand co = new SqlCommand();
SqlDataReader ds;
SqlParameter @p1, @p4;
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
try
{
cn.Open();
co.Connection = cn;
co.CommandText = "select * from reg where Id='" + TextBox1.Text + "' and Password='" + TextBox2.Text + "'";
ds = co.ExecuteReader();
if (ds.Read())
{
// co.CommandText = "select * from res where Id='" + TextBox1.Text + "' and Password='" + TextBox2.Text + "'";
Response.Redirect("http://localhost:50892/home.aspx");
}
else
{
lblerror.Text = "Incorrect Id and Password";
}
}
catch (Exception e1)
{
Response.Write(e1.Message);
}
finally
{
cn.Close();
}
}
protected void Button2_Click(object sender, EventArgs e)
{
try
{
cn.Open();
co.Connection = cn;
co.CommandText = "select * from manager where Id='" + TextBox1.Text + "' and Password='" + TextBox2.Text + "'";
ds = co.ExecuteReader();
if (ds.Read())
{
Response.Redirect("http://localhost:50892/home2.aspx");
}
else
{
// lblerror.Text = "Incorrect Id and Password";
//ScriptManager.RegisterClientScriptBlock(this, "mykey", "myfunctionclick(;)", true);
// ScriptManager.RegisterClientScriptBlock(this.Page, Page.GetType(), "script", "myfuntionclick();", true);
// ScriptManager.RegisterStartupScript(Page, this.GetType(), "Exception", "alert('Invalid Password')", true);
// ClientScript.RegisterStartupScript(this.GetType(), "JSScript", RegisterClientScriptBlock
// ScriptManager.RegisterStartupScript(this,this.GetType(), "script", "myfuntionclick();", true);
}
}
catch (Exception e1)
{
Response.Write(e1.Message);
}
finally
{
cn.Close();
}
}
protected void Button3_Click(object sender, EventArgs e)
{
}
}