Skip to content

Commit

Permalink
2004-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Browse files Browse the repository at this point in the history
	* SimpleWebHandlerParser.cs:
	* TemplateParser.cs: for the assembly names given in the 'assembly'
	attribute, use LoadWithPartialName instead of Load.

svn path=/trunk/mcs/; revision=26649
  • Loading branch information
gonzalop committed May 3, 2004
1 parent 466b4c0 commit d865f23
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions mcs/class/System.Web/System.Web.UI/ChangeLog
@@ -1,3 +1,8 @@
2004-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* SimpleWebHandlerParser.cs:
* TemplateParser.cs: for the assembly names given in the 'assembly'
attribute, use LoadWithPartialName instead of Load.
2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* Page.cs: return HttpContext.Current if _context has not yet been
Expand Down
Expand Up @@ -224,7 +224,7 @@ internal virtual Assembly AddAssemblyByName (string name, ILocation location)
}

try {
assembly = Assembly.Load (name);
assembly = Assembly.LoadWithPartialName (name);
string loc = assembly.Location;
fullpath = (Path.GetDirectoryName (loc) == PrivateBinPath);
} catch (Exception e) {
Expand Down
2 changes: 1 addition & 1 deletion mcs/class/System.Web/System.Web.UI/TemplateParser.cs
Expand Up @@ -349,7 +349,7 @@ internal virtual Assembly AddAssemblyByName (string name)
}

try {
assembly = Assembly.Load (name);
assembly = Assembly.LoadWithPartialName (name);
string loc = assembly.Location;
fullpath = (Path.GetDirectoryName (loc) == PrivateBinPath);
} catch (Exception e) {
Expand Down

0 comments on commit d865f23

Please sign in to comment.