"user="+user+"&pwd"+pwd, "user="+user+"&pwd="+pwd,少了个= 这个就类似url传参,可以使用Resuest获取
HttpContext.Current.Request.QueryString["user"].ToString();
string user = Request["user"].Tostring();string pwd=Request["pwd"].Tostring(); 这样就获取到了,手写的代码请采纳