Re: how do you specify the .NET runtime version for controls embedded in web browsers?
From: Mathew (mathew_at_noemail.nospam)
Date: 01/24/05
- Next message: axxegfx: "Re: threads and delegates"
- Previous message: Zak: "Re: whats the average age of programmers on here"
- In reply to: Steven Cheng[MSFT]: "RE: how do you specify the .NET runtime version for controls embedded in web browsers?"
- Next in thread: Steven Cheng[MSFT]: "Re: how do you specify the .NET runtime version for controls embedded in web browsers?"
- Reply: Steven Cheng[MSFT]: "Re: how do you specify the .NET runtime version for controls embedded in web browsers?"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 25 Jan 2005 08:31:11 +1300
Hi Steven
Thank you for the prompt answer, although you'll understand if I don't see
it as good news. One might expect users of IE to use hosted controls from
multiple sources and designed for various version of .NET, is there a way to
ensure they work in the future? Assuming new versions of the .NET framework
continue to contain a small number of breaking changes I don't see how the
system can work reliably without side by side execution of different
versions of the runtime. Have I missed something important? What's your
advice to control writers?
Regards
Mathew
"Steven Cheng[MSFT]" <v-schang@online.microsoft.com> wrote in message
news:5UXZcYcAFHA.768@cpmsftngxa10.phx.gbl...
> Hi Mathew,
>
> Thanks for your posting. As for the specifying .net runtime version for IE
> host winform control problem you mentioned, it is a bit difficult to do
> it
> at serverside.
> Generally the .net framework provide us the ability to specify the runtime
> version via app.config file. However, this approach is for application
> based, which means we can't specify a config setting for an assembly.
> And as for the IE hosted winform control, the winform controls' host
> application is the internet explore( iexplorer.exe) . So currently the
> only
> means for specifying the runtime version hosting the IE hosted control is
> providing a application config file for the iexplorer.exe. The file's
> named should be
> "IEXPLORER.EXE.CONFIG" which contains the following setting:
>
> <configuration>
> <startup>
> <supportedRuntime version="v1.1.4322"/>
> <supportedRuntime version="v1.0.3705"/>
> </startup>
>
> </configuration>
>
> Thanks.
>
> Regards,
>
> Steven Cheng
> Microsoft Online Support
>
> Get Secure! www.microsoft.com/security
> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>
- Next message: axxegfx: "Re: threads and delegates"
- Previous message: Zak: "Re: whats the average age of programmers on here"
- In reply to: Steven Cheng[MSFT]: "RE: how do you specify the .NET runtime version for controls embedded in web browsers?"
- Next in thread: Steven Cheng[MSFT]: "Re: how do you specify the .NET runtime version for controls embedded in web browsers?"
- Reply: Steven Cheng[MSFT]: "Re: how do you specify the .NET runtime version for controls embedded in web browsers?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|