string.Format的用法
String where = "u_username='{0}' and u_password='{1}'";
where = string.Format(where,loginuser,password);
IList<users> userslist=usersBLL.Select(where,true,false);
String where = "u_username='{0}' and u_password='{1}'";
where = string.Format(where,loginuser,password);
IList<users> userslist=usersBLL.Select(where,true,false);