944,103 Members | Top Members by Rank

Ad:
  • ASP.NET Discussion Thread
  • Unsolved
  • Views: 6496
  • ASP.NET RSS
Jul 2nd, 2007
0

Need Stored Procedure "sp_ValidateUser" for Login Page

Expand Post »
Hi,

Can anyone send me the Stored Procedure for "sp_validateUser" for login page using asp.net 1.1

Thanks.
Similar Threads
Reputation Points: 8
Solved Threads: 0
Newbie Poster
yasinirshad is offline Offline
4 posts
since Jul 2007
Jul 3rd, 2007
0

Re: Need Stored Procedure "sp_ValidateUser" for Login Page

Hi,

Can anyone send me the Stored Procedure for "sp_validateUser" for login page using asp.net 1.1

Thanks.
ASP.NET Syntax (Toggle Plain Text)
  1. CREATE PROCEDURE User_Login (@UserId AS VARCHAR(50),@Password AS VARCHAR(50)) --@Userid and @Password parameters from your client webpage
  2. AS
  3. BEGIN
  4. SELECT
  5. Userid,
  6. Password
  7. FROM
  8. ApplicationUsers --Table name
  9. where Userid = @Userid and
  10. password = @password
  11.  
  12. GO
Don't know whether this will work. Make some modifications according to your need.
Reputation Points: 347
Solved Threads: 13
Practically a Posting Shark
arjunsasidharan is offline Offline
812 posts
since Aug 2006

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in ASP.NET Forum Timeline: Google Checkout
Next Thread in ASP.NET Forum Timeline: Adding color to GridView





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC