DO NOT D,OWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB

Resolves 22528,22306. ClientDependency nearly done.

[TFS Changeset #57300]
This commit is contained in:
Shandem
2009-07-28 16:22:14 +00:00
parent 9a46338123
commit f24a26b264
42 changed files with 821 additions and 388 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
namespace umbraco.presentation.ClientDependency
{
public class BasicClientDependencyPath : IClientDependencyPath
{
public string Name { get; set; }
public string Path { get; set; }
public string ResolvedPath
{
get
{
return (HttpContext.Current.CurrentHandler as Page).ResolveUrl(Path);
}
}
}
}