原理我知道,就是不知道具体怎么用,在VS2008/2005环境下、
安装、使用的过程都帮我描述下嘛,谢谢 

解决方案 »

  1.   

    看看这篇文章吧,应该对你有帮助
    http://www.jaron.cn/chs_scripts/9/2006-11/101930.shtml
    http://www.jaron.cn/chs_scripts/9/2006-11/101931.shtml
    http://www.jaron.cn/chs_scripts/9/2006-11/101932.shtml
    http://www.jaron.cn/chs_scripts/9/2006-11/101933.shtmlhttp://www.tot.name/show/3/8/20071027231426.htm
      

  2.   

    <httpModules>
      <add name="ModuleRewriter"
           type="URLRewriter.ModuleRewriter, URLRewriter" />
    </httpModules>
    <configSections>
      <section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />
    </configSections>
    <RewriterConfig>
      <Rules>
        <RewriterRule>
          <LookFor>~/Class/([\w]+)/</LookFor>
          <SendTo>~/show.aspx?Class=$1</SendTo>
        </RewriterRule>
      </Rules>
    </RewriterConfig>
    参考