asp.net the default extension is. aspx, but we see many web sites with extensions that are very special, such as Microsoft's. mspx, which explains how to change the page extension to mspx.
The method in ASP.net 1.1:
1.IIS Mappings (iis-> Default Web site-> Properties-> main document-> configuration-> Mappings-> Add):
extension. mspx----> C: "WINNT" Microsoft.NET "Framework v1.1.4322" Aspnet_isapi.dll
Limited to: Get,head,post,debug
2. Modify Web.config
1<configuration>
2
3 <system.web>
4
5
The method in asp.net 2.0:
1.IIS Mappings (iis-> Default Web site-> Properties-> main document-> configuration-> Mappings-> Add):
extension. mspx----> C: "WINDOWS microsoft.net" Framework "v2.0.50727" Aspnet_isapi.dll
Limited to: Get,head,post,debug
2. Modify Web.config
1<configuration>
2
3<system.web>
4
5
This mspx can be modified for any type we want.