21 lines
561 B
C#
21 lines
561 B
C#
using System;
|
|
using System.Web;
|
|
|
|
namespace VAR.Focus.Web.Code
|
|
{
|
|
public class ScriptsBundler : IHttpHandler
|
|
{
|
|
#region IHttpHandler
|
|
|
|
public bool IsReusable { get { return false; } }
|
|
|
|
public void ProcessRequest(HttpContext context)
|
|
{
|
|
Bundler bundler = new Bundler(context.Server.MapPath("~/Scripts/"));
|
|
bundler.PrepareCacheableResponse(context.Response);
|
|
bundler.WriteResponse(context.Response, "text/javascript");
|
|
}
|
|
|
|
#endregion IHttpHandler
|
|
}
|
|
} |