Author: gonzalo
Date: 2005-04-20 01:48:20 -0400 (Wed, 20 Apr 2005)
New Revision: 43311

Modified:
   trunk/mcs/class/System.Web/System.Web.UI/ChangeLog
   trunk/mcs/class/System.Web/System.Web.UI/TemplateParser.cs
Log:
2005-04-20 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>

        * TemplateParser.cs: use Load instead of LoadWithPartialName. That was
        there from the time when Load wasn't working properly. First part of the
        fix to 74500.



Modified: trunk/mcs/class/System.Web/System.Web.UI/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web.UI/ChangeLog  2005-04-20 05:30:47 UTC 
(rev 43310)
+++ trunk/mcs/class/System.Web/System.Web.UI/ChangeLog  2005-04-20 05:48:20 UTC 
(rev 43311)
@@ -1,3 +1,9 @@
+2005-04-20 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+       * TemplateParser.cs: use Load instead of LoadWithPartialName. That was
+       there from the time when Load wasn't working properly. First part of the
+       fix to 74500.
+
 2005-04-15  Lluis Sanchez Gual <[EMAIL PROTECTED]>
 
        * ControlBuilder.cs: The BindingContainerType property happens

Modified: trunk/mcs/class/System.Web/System.Web.UI/TemplateParser.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web.UI/TemplateParser.cs  2005-04-20 
05:30:47 UTC (rev 43310)
+++ trunk/mcs/class/System.Web/System.Web.UI/TemplateParser.cs  2005-04-20 
05:48:20 UTC (rev 43311)
@@ -370,7 +370,7 @@
                        bool fullpath = false;
                        Assembly assembly = null;
                        try {
-                               assembly = Assembly.LoadWithPartialName (name);
+                               assembly = Assembly.Load (name);
                                string loc = assembly.Location;
                                fullpath = (Path.GetDirectoryName (loc) == 
PrivateBinPath);
                        } catch (Exception e) {

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to