同时传递两个参数该如何写?
本人菜鸟一只,做了个登陆的页面,想把登陆信息传递到下一个页,但是不会写这个传递表达式,请大家帮忙.
protected void btnLogin_Click(object sender, EventArgs e)
{
Response.Redirect( "login.aspx?userName= " + Server.UrlEncode(this.txtUserName.Text));
Response.Redirect( "login.aspx?userPwd= " + Server.UrlEncode(this.txtUserPwd.Text));
}
------解决方案--------------------Response.Redirect( "login.aspx?userName= "+Server.UrlEncode(this.txtUserName.Text)+ "&userPwd= "+Server.UrlEncode(this.txtUserPwd.Text));
login.aspx 再分别获取