這篇文章主要為大家展示了“Asp.net程序優(yōu)化js、css如何實現(xiàn)合并與壓縮”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Asp.net程序優(yōu)化js、css如何實現(xiàn)合并與壓縮”這篇文章吧。
站在用戶的角度思考問題,與客戶深入溝通,找到龍沙網(wǎng)站設(shè)計與龍沙網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站設(shè)計制作、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、國際域名空間、網(wǎng)頁空間、企業(yè)郵箱。業(yè)務(wù)覆蓋龍沙地區(qū)。具體實現(xiàn)方法如下:
訪問時將js和css壓縮并且緩存在客戶端,
采用的是Yahoo.Yui.Compressor組件來完成的,用戶可以點擊此處本站下載。
創(chuàng)建一個IHttpHandler來處理文件
public class CombineFiles : IHttpHandler { private const string CacheKeyFormat = "_CacheKey_{0}_"; private const bool IsCompress = true; //需要壓縮 public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) { HttpRequest request = context.Request; HttpResponse response = context.Response; string cachekey = string.Empty; string type = request.QueryString["type"]; if (!string.IsNullOrEmpty(type) && (type == "css" || type == "js")) { if (type == "js") { response.ContentType = "text/javascript"; } else if (type == "css") { response.ContentType = "text/css"; } cachekey = string.Format(CacheKeyFormat, type); CompressCacheItem cacheItem = HttpRuntime.Cache[cachekey] as CompressCacheItem; if (cacheItem == null) { string content = string.Empty; string path = context.Server.MapPath(""); //找到這個目錄下所有的js或css文件,當(dāng)然也可以進行配置,需求請求壓縮哪些文件 //這里就將所的有文件都請求壓縮 string[] files = Directory.GetFiles(path, "*." + type); StringBuilder sb = new StringBuilder(); foreach (string fileName in files) { if (File.Exists(fileName)) { string readstr = File.ReadAllText(fileName, Encoding.UTF8); sb.Append(readstr); } } content = sb.ToString(); // 開始壓縮文件 if (IsCompress) { if (type.Equals("js")) { content = JavaScriptCompressor.Compress(content); } else if (type.Equals("css")) { content = CssCompressor.Compress(content); } } //輸入到客戶端還可以進行Gzip壓縮 ,這里就省略了 cacheItem = new CompressCacheItem() { Type = type, Content = content, Expires = DateTime.Now.AddDays(30) }; HttpRuntime.Cache.Insert(cachekey, cacheItem, null, cacheItem.Expires, TimeSpan.Zero); } string ifModifiedSince = request.Headers["If-Modified-Since"]; if (!string.IsNullOrEmpty(ifModifiedSince) && TimeSpan.FromTicks(cacheItem.Expires.Ticks - DateTime.Parse(ifModifiedSince).Ticks).Seconds < 0) { response.StatusCode = (int)System.Net.HttpStatusCode.NotModified; response.StatusDescription = "Not Modified"; } else { response.Write(cacheItem.Content); SetClientCaching(response, cacheItem.Expires); } } } private void SetClientCaching(HttpResponse response, DateTime expires) { response.Cache.SetETag(DateTime.Now.Ticks.ToString()); response.Cache.SetLastModified(DateTime.Now); //public 以指定響應(yīng)能由客戶端和共享(代理)緩存進行緩存。 response.Cache.SetCacheability(HttpCacheability.Public); //是允許文檔在被視為陳舊之前存在的最長絕對時間。 response.Cache.SetMaxAge(TimeSpan.FromTicks(expires.Ticks)); response.Cache.SetSlidingExpiration(true); } private class CompressCacheItem { ////// 類型 js 或 css /// public string Type { get; set; } // js css ////// 內(nèi)容 /// public string Content { set; get; } ////// 過期時間 /// public DateTime Expires { set; get; } } }
最后在配置文件中配置一下CombineFiles.axd文件,具體配置略
引用如下
以上是“Asp.net程序優(yōu)化js、css如何實現(xiàn)合并與壓縮”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!