asp.net中js合并,压缩(6)
来源:未知 责任编辑:责任编辑 发表时间:2015-10-08 14:15 点击:次
if (!HttpContext.Current.Items.Contains(jsTextKey))
HttpContext.Current.Items.Add(jsTextKey, jsContent);
else
{
StringBuilder jsTexttemp = HttpContext.Current.Items[jsTextKey] as StringBuilder;
jsContent.Insert(0, jsTexttemp.ToString());
}
if (!HttpContext.Current.Items.Contains(jsFileKey))
HttpContext.Current.Items.Add(jsFileKey, jsSrc);
else
{
List<string> jsfiletemp = HttpContext.Current.Items[jsTextKey] as List<string>;
jsSrc.InsertRange(0, jsfiletemp);
}
}
#endregion
}
说了这么多,这里只是提供一个思想,一个js合并的思想,在真实的项目中还有很多细节需要注意啊。
摘自 dz45693的专栏
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>