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.NETASP.NET - Exception handling in ASP.NET - Exception handling correct unusual occurrences and prevent application from getting terminated....
Use of error pages in ASP.NETASP.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. ..