First step: Refer to a DLL Intelligencia.UrlRewriter.dll (different DLLs may have different methods)
Step Two: Configure the use of pseudo static in Web.config
<configSections> (under the Configuration node)
<section name= "Rewriter" requirepermission= "false" type= " Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.urlrewriter "/>
</configSections>
Step three: Configure URL mappings in Web.config
<rewrite url= "~/index.htm" to= "~/index.aspx"/>
An example URL with no parameters is a pseudo static address to is actually mapped to the address
Where the URL map with parameters
<rewrite url= "~/demandlist-(. +). htm$" to= "~/demandlist.aspx?firid=$1"/>
Multiple arguments preceded by a number of parentheses note that the actual map to the address of multiple parameters is a & split equivalent to &
such as: <rewrite url= "~/quotations-(. +)-(. +). htm$" to= "~/quotations.aspx?id=$1&userid=$2"/>
The URL pseudo static is already implemented in this program
Configuring IIS to enable IIS to support page pseudo-static
Step one: Right click on the Web site stand-alone "attribute" = "Home directory =" Configuration find the line with the. aspx extension selected
Click to edit the contents of the copy executable file to close this window click to add an extension to the box where you pasted the information you just copied into the executable file. You can click OK if you want to use the "Confirm File exists" check box.