|
<% if (Web.Url.Length > 55) SPHttpUtility.HtmlEncode(Web.Url.Substring(0,50) + "...", Response.Output); else if (Web.Url.IndexOf('/') != -1) SPHttpUtility.HtmlEncode(Web.Url.Substring(0, Web.Url.LastIndexOf('/')), Response.Output); else SPHttpUtility.HtmlEncode(Web.Url, Response.Output); %>/
|
|