Sfoglia il codice sorgente

cosmetic: the href will be resolved by the HtmlLink on Render.

svn path=/branches/mainsoft/JSF/mcs/; revision=91237
Konstantin Triger 18 anni fa
parent
commit
5fd31b89ae
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      mcs/class/System.Web/System.Web.UI/Page.cs

+ 1 - 1
mcs/class/System.Web/System.Web.UI/Page.cs

@@ -2738,7 +2738,7 @@ public partial class Page : TemplateControl, IHttpHandler
 
 		foreach (string lss in themes) {
 			HtmlLink hl = new HtmlLink ();
-			hl.Href = ResolveUrl (lss);
+			hl.Href = lss;
 			hl.Attributes["type"] = "text/css";
 			hl.Attributes["rel"] = "stylesheet";
 			Header.Controls.Add (hl);