解决方案 »

  1.   

    webform 可不就是aspx嘛,   MVC 可以没有后缀名.. 
      

  2.   

    那 携程 艺龙 这些大网站 还有 稍微大点的网站  是用 MVC 还是webform 写的? 
      

  3.   

    Put following lines of code into your global.ascx file:
    void Application_BeginRequest(object sender, EventArgs e)
    {
       String fullOrigionalpath = Request.Url.ToString();
       String[] sElements = fullOrigionalpath.Split('/');
       String[] sFilePath = sElements[sElements.Length - 1].Split('.');   if (!fullOrigionalpath.Contains(".aspx") && sFilePath.Length == 1)
       {
           if (!string.IsNullOrEmpty(sFilePath[0].Trim()))
               Context.RewritePath(sFilePath[0] + ".aspx");
       }
    }
      

  4.   

    首先,自己动手去用用UrlRewrite
    webform  也可以用不用拖控件的~~~ 找出不用拖控件的方法来(webpage)动手 动手  
      

  5.   

    携程大部分是aspx页面,只有少部分是mvc
      

  6.   

    伪静态是为了seo优化。那种大网站数据更新太快 不会用真静态 如果每次变动 数据都要生成一个静态页面的话。无论对服务器cpu,还是内存都是不小的压力。 是否用真静态都是看需求。如这些数据1个月更新一次 1周更新一次当然用真静态最好。不走生命周期访问快。每周生成一次静态页面就好