Allows Static HTML Resources to have a Fingerprint so that we can set long cache expiration dates see http://madskristensen.net/post/cache-busting-in-aspnet
Example #1
0
        /// <summary>
        /// Gets the eval data.
        /// </summary>
        /// <param name="expression">The expression.</param>
        /// <param name="target">The target.</param>
        /// <param name="entry">The entry.</param>
        /// <returns></returns>
        public static object GetEvalData(string expression, Type target, string entry)
        {
            string result = Fingerprint.Tag(System.Web.VirtualPathUtility.ToAbsolute(expression));

            return(result);
        }