Class module and a code module - ASP.NET

Define class module and a code module.

Modules are commonly used in VB.NET programs. A module is not a class or type, but it is just an organizational namespace for programs that is shared. It is recommended to use classes as building blocks for complex application rather than modules. A module is not object-oriented.

In a Module, all members are shared and have Friend accessibility. We cannot instantiate a Module. It serves mainly to organize code in a global, single place.
Steps to execute a stored procedure from Web Application - ASP.NET
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...
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...
Post your comment