string STconnection = ConfigurationSettings
//創建數據庫連接
SqlConnection STconn = new SqlConnection(STconnection);
//打開數據庫連接
STconn
//根據用戶名和密碼創建sql語句
string STstrsql =
//創建SqlCommand對象
SqlCommand STcmd = new SqlCommand(STstrsql
//通過調用ExecuteReader()從數據庫中檢索行
SqlDataReader STsdr = STcmd
//判斷是否有數據
if(STsdr
{
//將獲得的STNickName保存到Session中
Session[
//將獲得的STNoAdmin保存到Session中
Session[
//判斷管理權限
if(Session[
{
//如果是一般用戶就定向到STUserLogin
Response
}
else if(Session[
{
//如果是管理員就定向到STManagerLogin
Response
}
}
else
{
//用戶名密碼不正確就彈出警告錯誤!
Response
}
}
//當用戶輸入完用戶名和密碼後單擊
private void STReset_Click(object sender
{
//定向到Index
Response
}
right
From:http://tw.wingwit.com/Article/program/net/201311/15320.html