你是不是做的登陆功能?
我这里有相关的代码:
我用的存储过程。
public int logInReturnUID( string Username ,string Userpws)
{
int cout;
//去掉字符串的空格
UserName = UserName.Trim();
Userpws = Userpws.Trim();
//打开数据连接
SqlConnection con = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
SqlCommand com = new SqlCommand("CheckUser",con);
com.CommandType = CommandType.StoredProcedure;
//为过程增加@username参数
SqlParameter username = new SqlParameter ("@UserName",SqlDbType.NChar ,50);
username.Value = Username;
com.Parameters.Add(username);
//为过程增加@userpws参数
SqlParameter userpws = new SqlParameter("@Userpws" ,SqlDbType.NChar,50);
userpws.Value = Userpws;
com.Parameters.Add(userpws);
//为过程增加输出参数@userid
SqlParameter userid= new SqlParameter ("@UserId",SqlDbType.Int ,4);
userid.Direction =ParameterDirection .Output ;
com.Parameters.Add(userid);
con.Open();
try
{//执行过程返回用户的id号
com.ExecuteNonQuery();
cout =(int)userid.Value;
UserName=Username.ToString();
UserPassword= Userpws.ToString();
com.Dispose();
con.Close();
}