ASP.Net缓存破坏方法无法正常工作

时间:2016-07-06 06:16:12

标签: c# asp.net url caching iis

我正在尝试解决浏览器缓存问题。当任何js和css文件发生任何变化时,文件都是从浏览器缓存而不是服务器提供的,我在互联网上进行了研究,并从mads krinstinsen找到了this great post

我在App_Code文件夹的类中包含了以下类和方法。

using System; 
using System.IO; 
using System.Web; 
using System.Web.Caching; 
using System.Web.Hosting;

public class Fingerprint 
{ 
  public static string Tag(string rootRelativePath) 
  { 
    if (HttpRuntime.Cache[rootRelativePath] == null) 
    { 
      string absolute = HostingEnvironment.MapPath("~" + rootRelativePath);

      DateTime date = File.GetLastWriteTime(absolute); 
      int index = rootRelativePath.LastIndexOf('/');

      string result = rootRelativePath.Insert(index, "/v-" + date.Ticks); 
      HttpRuntime.Cache.Insert(rootRelativePath, result, new CacheDependency(absolute)); 
    }

      return HttpRuntime.Cache[rootRelativePath] as string; 
  } 
}

后来我更改了所有我的aspx页面(近500个位置)中的引用,如下所示。

<script type="text/javascript" src="<%=Fingerprint.Tag("/Scripts/JQuery/jquery.color.js")%>"></script>
    <script type="text/javascript" src="<%=Fingerprint.Tag("/Scripts/JQuery/jquery.glowbuttons.js?v=1.1")%>"></script>

根据建议,我还在IIS中添加了以下重写规则并安装了重写模块。

<rewrite>
      <rules>
        <rule name="fingerprint">
          <match url="([\S]+)(/v-[0-9]+/)([\S]+)" />
          <action type="Rewrite" url="{R:1}/{R:3}" />
        </rule>
      </rules>
    </rewrite>

现在面临的问题

这在我的开发环境中都很有魅力。当我将代码发布到iis(uat和我的本地iis)时,相同的代码不起作用。

Fingerprint.Tag()方法返回错误的网址。

我的开发网址如下所示

http://localhost:54992/login.aspx

我的IIS网站网址如下所示

http://www.example.com/myClientName/login.aspx

您可能已经注意到IIS上有一个额外级别的网址段(\myClientName\),这就是造成问题的原因。

我还添加了在URL中添加myClientName部分的逻辑,但遗憾的是,这也没有用。

在IIS托管网站上,我发现了大量404错误,因为网址路径会跳过 myClientName 部分。

更新1

我还尝试使用以下同一方法的另一个版本,它检查代码是在iisexpress还是在完整IIS上运行并相应地生成路径

 public static string Tag(string rootRelativePath)
    {

        if (rootRelativePath.Contains("~"))
            rootRelativePath = rootRelativePath.Replace("~", string.Empty);

        bool isRunningInIisExpress = Process.GetCurrentProcess()
                                .ProcessName.ToLower().Contains("iisexpress");

        if (HttpRuntime.Cache[rootRelativePath] == null)
        {
            string siteAlias = string.Empty;

            if (!string.IsNullOrEmpty(WebConfigurationManager.AppSettings["SiteName"]))
                siteAlias = WebConfigurationManager.AppSettings["SiteName"].ToString();
            string absolute = HostingEnvironment.MapPath("~" + rootRelativePath);

            DateTime date = File.GetLastWriteTime(absolute);
            int index = rootRelativePath.LastIndexOf('/');

            string result = rootRelativePath.Insert(index, "/v-" + date.Ticks);
            if (!isRunningInIisExpress)
            {
                siteAlias = "/" + siteAlias;
                result = siteAlias + result;
            }
            if (File.Exists(absolute))
                HttpRuntime.Cache.Insert(rootRelativePath, result, new CacheDependency(absolute));
        }

        return HttpRuntime.Cache[rootRelativePath] as string;
    }

请指导我正确的方向。

1 个答案:

答案 0 :(得分:1)

使用相对路径或将站点设置为不同的端口,因此它将以与开发环境相同的方式在实时环境中运行。