It just loads a shim, doesn't it? The actual CLR process is loaded later. I
just tried a 1.1 and 2.0 Winform that were put in a IIS folder. When
browsing from IT, it loaded them both fine.
Regards,
Pandurang

Signature
blog: www.thinkingMS.com/pandurang
> How do you think to get at the metadata before the CLR is loaded?
> By default IE will load the latest version of the framework installed.
[quoted text clipped - 16 lines]
> | >
> | > Thanks
Willy Denoyette [MVP] - 27 Mar 2006 12:00 GMT
The shim is mscoree.dll, which is installed in system32, this one is the
version belonging to the latest version of the framework installed, and the
shim will load the latest version of the CLR (which is not a process btw)
installed. You can only change this behavior through the config file.
Note that the V2 CLR can execute v1 applications as well as v2 applications,
this is why your winform applications laod and probably runs fine.
Willy.
| It just loads a shim, doesn't it? The actual CLR process is loaded later. I
| just tried a 1.1 and 2.0 Winform that were put in a IIS folder. When
[quoted text clipped - 23 lines]
| > | >
| > | > Thanks
Richard Lee - 28 Mar 2006 19:29 GMT
Thanks, gentlemen.
I have another question.
When I use IE to load an assembly, there's a user control in it, I always
get SecurityPermission Exception when I tried to do something like Socket,
File I/O or Registry, I know it's against code access security policy at
client side.
Is there anyway we can make it work without code group permission setting at
client side?
Is there anything like Activex Control in IE for .NET Assembly, maybe IE7
have this feature?
> The shim is mscoree.dll, which is installed in system32, this one is the
> version belonging to the latest version of the framework installed, and the
[quoted text clipped - 35 lines]
> | > | >
> | > | > Thanks
Gabriel Lozano-Morán - 10 Apr 2006 22:17 GMT
By the way to see which version of the CLR is loaded for the assembly there
is a quick and easy way to enable the CLR Loading log as I posted on my
blog:
http://pointerx.net/blogs/glozano/archive/2006/03/23/84.aspx
Gabriel Lozano-Morán
> It just loads a shim, doesn't it? The actual CLR process is loaded later.
> I
[quoted text clipped - 26 lines]
>> | >
>> | > Thanks