当前位置:  编程技术>.net/c#/asp.net

asp.net伪静态(URL重写)代码一例

    来源: 互联网  发布时间:2014-08-30

    本文导语:  实现伪静态的代码如下。 首先,加载用到的类。   代码示例: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.Data.SqlClient; using Norco.DAL; / /// /// Summary description for UrlRewriter /// p...

实现伪静态的代码如下。

首先,加载用到的类。
 

代码示例:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;
using Norco.DAL;
/
///
/// Summary description for UrlRewriter
///
public class SupportWJ : IHttpHandler
{
public SupportWJ()
{
//
// TODO: Add constructor logic here
//
}
public void ProcessRequest(HttpContext Context)
{
try
{
//取得原始URL屏蔽掉参数
string Url = Context.Request.RawUrl;
//建立正则表达式
//string sql = "insert into test(TestName) values(@test)";
//SqlParameter tmp = new SqlParameter("@test", SqlDbType.NVarChar, 2500);
//tmp.Value = Url;

//DbAccess.SQLExecuteNoneQuery(sql, tmp);
System.Text.RegularExpressions.Regex Reg = new System.Text.RegularExpressions.Regex(@"/NORCO-Support-(d+).shtml", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
//用正则表达式进行匹配
System.Text.RegularExpressions.Match m = Reg.Match(Url, Url.LastIndexOf("/NORCO-Support-"));//从最后一个“/”开始匹配

//String RealPath = @"/about.aspx?id=" + m.Groups[1];
if (m.Success)//匹配成功
{
String RealPath = @"/Servers.aspx?sid=" + m.Groups[1];

//string sql = "insert into test(TestName) values(@test)";
//SqlParameter tmp = new SqlParameter("@test", SqlDbType.NVarChar, 50);
//tmp.Value = RealPath;
 

//DbAccess.SQLExecuteNoneQuery(sql, tmp);
 

//Context.Response.Write(RealPath);
//Context.RewritePath(RealPath);//(RewritePath 用在无 Cookie 会话状态中。)
Context.Server.Execute(RealPath);
}
else
{
Context.Response.Write("404 ERROR!");
}
}
catch
{
Context.Response.Redirect(Context.Request.Url.ToString());
}
}
/**/
///
/// 实现“IHttpHandler”接口所必须的成员
///
///
/// Author:yoyo
/// www.
public bool IsReusable
{
get { return false; }
}

}

然后,在在web.config添加:
 

最后,配置增加对shtml后缀的类ASPX处理。

完成以上三步,即可实现asp.net中伪静态页面,有兴趣的朋友,自己动手测试下吧。


    
 
 

您可能感兴趣的文章:

  • asp.net输出重写压缩页面文件的实例
  • asp.net URL重写的方法参考
  • asp.net使用URLRewriter.dll进行重写的方法举例
  • asp.net 伪静态 URL重写的纯代码实现方法
  • asp.net输出重写压缩页面文件实例代码
  • asp.net URL地址重写(伪静态)学习实例
  • asp.net URLRewriter实现URL重写(伪静态)的方法介绍
  • asp.net不用设置iis实现url重写 类似伪静态路由
  • Asp.Net URL重写的具体实现
  • asp.net伪静态后真正的静态文件无法访问的解决方法
  • asp.net网站伪静态怎么使用中文url地址?
  • ASP.NET网站伪静态下使用中文URL的方法
  • asp.net静态方法弹出对话框的一例代码
  • asp.net 生成静态页时如何过滤掉viewstate
  • asp.net 伪静态简单实例
  • ASP.NET 伪静态页面的实现方法
  • IIS7中ASP.NET伪静态配置方法介绍
  • ASP.NET伪静态(IHttpModule方式)的实现代码
  • 去掉 asp.net 静态后生成的viewstate代码的方法
  • 使用ASP.NET模板生成HTML静态页的方法
  • asp.net生成静态页面并分页的实现方法
  • asp.net web.config伪静态规则配置示例
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • c#/ASP.NET操作cookie(读写)代码示例
  • ??谁能把ASP代码改为JSP的
  • asp.net文字水印功能简单代码
  • asp连接sql server 2005的代码
  • asp.net读取本地与全局资料文件的代码
  • asp.net 获取目录中图片的代码
  • asp.net正则表达式提取中文的代码示例
  • 如何在ASP的frame框架中屏蔽右键,以防止查看页面的源代码?
  • asp 正则 过滤重复字符串的代码
  • asp正则过滤重复字符串的代码
  • asp去掉html,保留img br p div的正则实现代码
  • asp.net输出重写压缩页面文件的实例 iis7站长之家
  • asp.net 判断当前日期是该年中第几周的代码
  • asp.net中利用正则表达式判断一个字符串是否为数字的代码
  • asp.net弹出消息框、确认框的代码汇总
  • asp.net 获取ashx中数据的代码
  • asp.net防止页面刷新重复提交的代码
  • asp.net读取txt文件内容的代码
  • asp.net文件分块下载的实现代码
  • asp.net 正则表达式匹配图片路径的实现代码
  • [asp]中的正则表达式运用代码
  • ASP.NET之 Ajax相关知识介绍及组件图
  • 我想了解一些关于Java怎样与Asp或Asp.net结合方面在未来发展方向的问题?
  • asp.net UrlEncode对应asp urlencode的处理方法
  • asp.net实例 定义和使用asp:AccessDataSource
  • win2008 r2 服务器环境配置(FTP/ASP/ASP.Net/PHP)
  • asp与asp.net的session共享
  • 如何在unix下发布asp?
  • 怎么让Apache支持Asp?
  • Linux平台下哪种方法实现ASP好?
  • ASP和ASP.Net共享Session解决办法


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3