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.
|