"*" path="* " type= " classlibrary831.testhandler,classlibrary831 "
Analytical:
Verb Property : Specifies the HTTP actions supported by the handler. *-supports all HTTP actions; " Get "-support for Get operation;" Post "-support post operation;" GET, POST "-supports two operations.
Path Property : Specifies the path and file name (which can contain wildcards) that require the handler to be called. "*", "*.aspx", "showimage.aspx", "test1.aspx,test2.aspx"
Type Property : Specifies the actual type of the handler or handler factory as a combination of the namespace, class name, and assembly name. Asp. NET runtime first searches the DLL in the bin directory and then searches in the GAC.
"testmodule" type= " classlibrary831.testmodule,classlibrary831"></add>
Name: module names, typically class names
Type: There are two parts, the first half is the full name of the namespace and the class name, the second part is the assembly name, and if the class is placed directly in the App_Code folder, the program name is App_Code.
Handle and Module