我編寫登錄過程,用戶可以給用戶名或emailid登錄和密碼。我的程序是這樣的SQLServer用戶登錄中的存儲過程
create procedure users_login (@username varchar(50),@password varchar(50),
@emailid varchar(50),@ret int output)
as
begin
select username,password,emailid from users where username=isnull(@username,null) or
emailid=isnull(@emailid,null) and [password][email protected]
if(@@rowcount >0)
begin
set @ret=1
end
else
begin
set @ret=0
end
end
是確定或修改任何有
「那是正確的」 - 你有什麼要求? – 2010-02-03 06:45:06
Mr.Mitch登錄頁面中有兩個文本框,其中一個用於 suername,第二個用於密碼。在firsttextbox用戶可以給用戶名或emailid登錄 – 2010-02-03 06:47:45