根据我提供信息 用asp.net 编写c#登陆页面Default.aspx.cs代码

SQL数据库名为selltickets_Data用户名名:admin密码admin登陆成功后的页面为:main.aspx... SQL数据库名为selltickets_Data 用户名名:admin 密码admin 登陆成功后的页面为:main.aspx 展开
 我来答
凌空若__涵
2010-12-13 · 超过41用户采纳过TA的回答
知道小有建树答主
回答量:134
采纳率:0%
帮助的人:96.8万
展开全部
额 ,也许我可以帮助你 。

QQ:1286696702
wuzhouxue
2010-12-13 · TA获得超过117个赞
知道答主
回答量:113
采纳率:0%
帮助的人:46.1万
展开全部
protected void btnLogin1_Click(object sender, EventArgs e)
{
int i = this.checkLogin(txtName1.Text, txtPwd1.Text);
if (i > 0)
{
string str_Key = txtName1.Text + "_" + txtPwd1.Text;
string str_User = Convert.ToString(Cache[str_Key]);

if (str_User == String.Empty )
{
TimeSpan SessTimeOut = new TimeSpan(0, 0, HttpContext.Current.Session.Timeout, 0, 0);
HttpContext.Current.Cache.Insert(str_Key, str_Key, null, DateTime.MaxValue, SessTimeOut, CacheItemPriority.NotRemovable, null);
Session["User"] = str_Key;
Response.Write("<script>alert('登录成功!!!');location='管理员主页.aspx'</script>");
Session["username"] = txtName1.Text;

}
else
{
Response.Write("<h2 style='color:red'>您已经登录过了! <script>alert('登录成功!!!');location='main.aspx'</script>");

return;
}
}
else
{
Response.Write("用户名称或密码错误!!!");
}
protected void btnCandel2_Click(object sender, EventArgs e)
{
TxtName1.Text = "";
TxtPwd1.Text = "";
}
///////////////////////////////
注意:
btnLogin1——登录按钮的ID;btnCandel1——重置按钮的ID;txtName1——用户名输入框的ID;TxtPwd1——密码输入框的ID.

数据库的数据库名在web.config里面修改,找到connectionStrings,在里边改就可以
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式