vs传值接收页面怎么直接打开_在VS中怎么实现运行后实现页面跳转,代码如下。关键是输入相应的数据后没有反应!...

usingSystem;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingS...

using System;

using System.Configuration;

using System.Data;

using System.Linq;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.HtmlControls;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Xml.Linq;

using System.Data.SqlClient;

public partial class _Default : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

}

protected void Button1_Click(object sender, EventArgs e)

{

string ConnectionString = "Data Source=.;Initial Catalog=user_info;Integrated Security=True";

SqlConnection conn = new SqlConnection(ConnectionString);

SqlCommand cmd = new SqlCommand();

cmd.Connection = conn;

string sql = "select * from login_infor where username='{0}' and password='{1}'";

sql = string.Format(sql, this.TextBox1.Text, this.TextBox2.Text);

cmd.CommandText = sql;

string role = "";

conn.Open();

SqlDataReader reader = cmd.ExecuteReader();

if (reader.Read())

{

role = reader.GetString(2);

if (role == "admin")

{

Response.Redirect("~/admin.aspx"); //if user's information is right, login successful

}

if (role == "user")

{

Response.Redirect("~/Default2.aspx"); //if user's information is right, login successful

}

}

else

{

Label3.Text = "user name or password is wrong";//if user's information is wrong, can't login

}

conn.Close();

}

protected void Button2_Click(object sender, EventArgs e)

{

Response.Redirect("~/register.aspx");

}

}

数据库为user_info 表名为login_infor 我运行后没有任何反应

展开

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值