這是aspx的具體代碼
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
cx.Items.Add("管理員");
}
}
protected void Button2_Click(object sender, EventArgs e)
{
// Response.Redirect("yonghuzhuce_add.aspx");
}
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
if (TextBox2.Text.ToString().Trim() == "" || TextBox1.Text.ToString().Trim() == "")
{
Response.Write("javascript:alert('請輸入完整');history.back();");
Response.End();
}
string sql;
sql = "";
if (cx.Text.ToString().Trim() == "管理員")
{
sql = "select * from [allusers] where username='" + TextBox1.Text.ToString().Trim() + "' and pwd='" + TextBox2.Text.ToString().Trim() + "'";
}
DataSet result = new DataSet();
result = new Class1().hsggetdata(sql);
if (result != null)
{
if (result.Tables[0].Rows.Count > 0)
{
Session["username"] = TextBox1.Text.ToString().Trim();
Session["cx"] = result.Tables[0].Rows[0]["cx"].ToString().Trim();
Response.Redirect("main.aspx");
}
else
{
Response.Write("javascript:alert('對不起,用戶名或密碼不正確!');history.back();");
}
}
else
{
Response.Write("javascript:alert('對不起,系統錯誤,請不要越權操作!');");
}
}
}
這是鏈接數據庫的weiconfig設置
問題是為什麼我在登陸的時候輸入任何用戶名和密碼總是說“對不起,系統錯誤,請不要越權操作!”呢?
else
{
Response.Write("javascript:alert('對不起,系統錯誤,請不要越權操作!');");
}
你這個else對應的是哪個if,而且你看看這個if裡的條件:假設如果條件是>0,則else裡就是<=0;這個你應該明白的;
或許就是這個原因導致你else裡獲取的條件范圍很大,所以一直顯示“對不起,系統錯誤,請不要越權操作!”
如果回答對您有幫助,請采納