The Proper Way to Create a Login Screen for your ASP.NET Website
Shared via AddThis
This entry has really helped me create a nice login page.
This also has helped me:
http://msdn.microsoft.com/en-us/library/aa302398.aspx
Showing posts with label sql. Show all posts
Showing posts with label sql. Show all posts
Thursday, September 17, 2009
SqlCommand: Expecting Parameter
This is a simple reminder for myself and you all out there.
If you are using SqlCommand to execute stored procedures, remember to set the command type to StoredProcedure!
SqlCommand cmd = new SqlCommand("storedproc", conn);
cmd.CommandType = CommandType.StoredProcedure;
If you are using SqlCommand to execute stored procedures, remember to set the command type to StoredProcedure!
SqlCommand cmd = new SqlCommand("storedproc", conn);
cmd.CommandType = CommandType.StoredProcedure;
Subscribe to:
Posts (Atom)