K Kiran B. Jan 3, 2005 #1 Hi, how do I know which version my code is running? I have two versions of ..net framework installed 1.0.3705 and 1.1 Thanks a lot
Hi, how do I know which version my code is running? I have two versions of ..net framework installed 1.0.3705 and 1.1 Thanks a lot
G Guest Jan 3, 2005 #2 I think that would be the Project Properties->Build page. Click Supported Runtimes.
M Mark Fitzpatrick Jan 3, 2005 #3 Typically, the Framework will compile to the latest version of the whatever is installed so you shouldn't have to worry much. Hope this helps, Mark Fitzpatrick Microsoft MVP - FrontPage
Typically, the Framework will compile to the latest version of the whatever is installed so you shouldn't have to worry much. Hope this helps, Mark Fitzpatrick Microsoft MVP - FrontPage
S Saravana Jan 3, 2005 #4 You can check this property in code, System.Environment.Version.ToString For more details, check out this blog http://msmvps.com/manoj/archive/2004/02/14/2881.aspx
You can check this property in code, System.Environment.Version.ToString For more details, check out this blog http://msmvps.com/manoj/archive/2004/02/14/2881.aspx
G Guest Jan 3, 2005 #5 Running under? System.Environment gives you a lot of info. IIS can give you information for a particular web, as well. If you mean "coded under", you can poke at the compiled assembly using reflection. --- Gregory A. Beamer MVP; MCP: +I, SE, SD, DBA *************************** Think Outside the Box! ***************************
Running under? System.Environment gives you a lot of info. IIS can give you information for a particular web, as well. If you mean "coded under", you can poke at the compiled assembly using reflection. --- Gregory A. Beamer MVP; MCP: +I, SE, SD, DBA *************************** Think Outside the Box! ***************************
K Ken Cox [Microsoft MVP] Jan 3, 2005 #6 You can check any Web's version with this tool: http://www.denisbauer.com/NETTools/ASPNETVersionSwitcher.aspx
You can check any Web's version with this tool: http://www.denisbauer.com/NETTools/ASPNETVersionSwitcher.aspx