URL
url重写的优点在于:
二
下载地址1:http://www.sinoec.cn/fordown/URLRewriter.dll
下载地址2:download.microsoft.com/download/0/4/6/0463611e-a3f9-490d-a08c-877a83b797cf/MSDNURLRewriting.msi
下载完成后,在web.config里设置如下:
<?xml
<!--overred-->
<configuration>
</configuration>
其中
<section
用于指定配置节"RewriterConfig"的处理程序类的名称为”URLRewriter.Config.RewriterConfigSerializer
关键的是这两句
<LookFor>~/d(\d+)\.aspx</LookFor>
<SendTo>~/default.aspx?id=$1</SendTo>
< LookFor>~/d(\d+)\.aspx</LookFor>表示,用户输入的url,d(\d+)\.aspx是
<SendTo> ~/default.aspx?id=$1</SendTo>,表示当服务器接收到符合上面条件的请求后如何重写url。此处表示访问 defalutl.aspx并传入参数id,其值$1将用用户请求的文件名中的第一个数字来表示。
例如用户输入
iis注册:如果要实现.html 的伪静态页面,就要进行IIS配置。要选择ASPX进行编辑,图有错。
还有第八步中的”untick Verify that file exists.“要看仔细。否则重写HTML就无效。
4:备注
不要在"应用程序扩展"里“添加" .html的映射,否则正常的html将无法访问。
////////////////////////////////////////////////////////////////
- 打开Internet信息服务( IIS )管理器
click to expand 点击展开 - Right-click on the website where you want to configure UrlRewriter.NET and select Properties.右点击这个网站,只要你想配置urlrewriter.net并选择属性。
click to expand 点击展开 - Click on the Home Directory tab.点击home目录选项卡。
click to expand 点击展开 - Click the Configuration button.点击配置按钮。
click to expand 点击展开 - Select the .asax application extension and click Edit…选择。 asax申请延期,并单击编辑…
click to expand 点击展开 - Copy the Executable path (…\aspnet_isapi.dll) to the clipboard and click Cancel.拷贝可执行文件路径( … … \ aspnet_isapi.dll )到剪贴板,然后点击取消。
click to expand 点击展开 - Click Insert…点击插入…
click to expand 点击展开 - Paste the Executable path (…\aspnet_isapi.dll) from the clipboard, untick Verify that file exists.糊一个可执行文件路径( … … \ aspnet_isapi.dll )由剪贴板, untick验证文件是否存在。
click to expand 点击展开 - Click OK to close the Add/Edit Application Extension Mapping dialog单击确定关闭添加/编辑应用扩展映射对话框
click to expand 点击展开 - Click OK to close the Application Configuration dialog.单击确定关闭该应用程序配置对话框。
处理回发
在重写后的url里如果产生回发,例如有一个按钮,又调用了该被重写的 aspx,用户浏览器中将会显示该aspx文件实际的地址,也就是http:
解决方法有二:
(1)自己定义一个Actionlessform类,在aspx中不再使用系统提供的form
namespace
{
}
创建此类并对其进行编译之后,要在
<%@
然后,将
并将右边的
个人并不推荐该方法
(2)第二种方法就是继承page,这样你不需要在aspx页中改任何东西。
代码:
using
using
using
using
namespace
{