Steps to execute a stored procedure from Web Application - ASP.NET

Steps to execute a stored procedure from Web Application.

- Create a command object.
- Set the object’s CommandText property to the name of the stored procedure.
- Set the CommandType property to stored Procedure.
- Execute stored procedure using command object’s method.
Exception handling in ASP.NET
ASP.NET - Exception handling in ASP.NET - Exception handling correct unusual occurrences and prevent application from getting terminated....
What are the exception-handling ways in ASP.NET?
ASP.NET - What are the exception-handling ways in ASP.NET? - Exceptions can be handled by using Try(try) block and Error event procedures at the global...
Use of error pages in ASP.NET
ASP.NET - Use of error pages in ASP.NET - Error pages are used when exceptions are outside the scope of the application and the application can’t respond directly to these exceptions. ..
Post your comment