Option for .NET version 3.5 not in IIS Manager?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Kotuby

    Option for .NET version 3.5 not in IIS Manager?

    Hi all,

    I am upgrading my web app from VS2005 to VS2008 (using VB). I opened the
    project in VS2008 and selected the 3.5 version of NET framework. The project
    compiles and runs fine on my Dev machine (which of course had the new
    framework installed with VS 2008). I have noticed some references in
    web.config to 3.5 in the compiler section.

    I downloaded the 3.5 framework from MSDN to the production server and
    installed it, requiring a reboot. I am presuming that the install registers
    the new framework with IIS.

    I don't think I am calling any 3.5 specific Methods as I haven't really
    changed the code since the upgrade to VS2008.

    What concerns me is when in IIS Manager, I don't see an option under the
    ASP.NET tab to select version 3.5.

    Is there something more I need to do for that to happen? I don't want to add
    new 3.5 specific functionality only to find that it will not run on the
    production web server.

    Thanks for any help in this matter...


  • Misbah Arefin

    #2
    Re: Option for .NET version 3.5 not in IIS Manager?

    Framework 3.5 is not a new framework it somewhat of a service pack 1 for
    ..NET 2.0, service pack 1 for .NET 3.0 and adds new features like LINQ etc.


    --
    Misbah Arefin


    "John Kotuby" <JohnKotuby@dis cussions.micros oft.comwrote in message
    news:uiH4uYnaIH A.4144@TK2MSFTN GP05.phx.gbl...
    Hi all,
    >
    I am upgrading my web app from VS2005 to VS2008 (using VB). I opened the
    project in VS2008 and selected the 3.5 version of NET framework. The
    project compiles and runs fine on my Dev machine (which of course had the
    new framework installed with VS 2008). I have noticed some references in
    web.config to 3.5 in the compiler section.
    >
    I downloaded the 3.5 framework from MSDN to the production server and
    installed it, requiring a reboot. I am presuming that the install
    registers the new framework with IIS.
    >
    I don't think I am calling any 3.5 specific Methods as I haven't really
    changed the code since the upgrade to VS2008.
    >
    What concerns me is when in IIS Manager, I don't see an option under the
    ASP.NET tab to select version 3.5.
    >
    Is there something more I need to do for that to happen? I don't want to
    add new 3.5 specific functionality only to find that it will not run on
    the production web server.
    >
    Thanks for any help in this matter...
    >
    >

    Comment

    • Riki

      #3
      Re: Option for .NET version 3.5 not in IIS Manager?

      Misbah Arefin wrote:
      Framework 3.5 is not a new framework it somewhat of a service pack 1
      for .NET 2.0, service pack 1 for .NET 3.0 and adds new features like
      LINQ etc.
      Meaning that you have to select version 2.0 in IIS, and you will have the
      3.5 functionality.

      --
      Riki
      "John Kotuby" <JohnKotuby@dis cussions.micros oft.comwrote in message
      news:uiH4uYnaIH A.4144@TK2MSFTN GP05.phx.gbl...
      >Hi all,
      >>
      >I am upgrading my web app from VS2005 to VS2008 (using VB). I opened
      >the project in VS2008 and selected the 3.5 version of NET framework.
      >The project compiles and runs fine on my Dev machine (which of
      >course had the new framework installed with VS 2008). I have noticed
      >some references in web.config to 3.5 in the compiler section.
      >>
      >I downloaded the 3.5 framework from MSDN to the production server and
      >installed it, requiring a reboot. I am presuming that the install
      >registers the new framework with IIS.
      >>
      >I don't think I am calling any 3.5 specific Methods as I haven't
      >really changed the code since the upgrade to VS2008.
      >>
      >What concerns me is when in IIS Manager, I don't see an option under
      >the ASP.NET tab to select version 3.5.
      >>
      >Is there something more I need to do for that to happen? I don't
      >want to add new 3.5 specific functionality only to find that it will
      >not run on the production web server.
      >>
      >Thanks for any help in this matter...

      Comment

      • Misbah Arefin

        #4
        Re: Option for .NET version 3.5 not in IIS Manager?

        Yes in IIS it will be 2.0

        --
        Misbah Arefin


        "Riki" <riki@dontnagme .comwrote in message
        news:ehz0bmnaIH A.4144@TK2MSFTN GP05.phx.gbl...
        Misbah Arefin wrote:
        >Framework 3.5 is not a new framework it somewhat of a service pack 1
        >for .NET 2.0, service pack 1 for .NET 3.0 and adds new features like
        >LINQ etc.
        >
        Meaning that you have to select version 2.0 in IIS, and you will have the
        3.5 functionality.
        >
        --
        Riki
        >
        >"John Kotuby" <JohnKotuby@dis cussions.micros oft.comwrote in message
        >news:uiH4uYnaI HA.4144@TK2MSFT NGP05.phx.gbl.. .
        >>Hi all,
        >>>
        >>I am upgrading my web app from VS2005 to VS2008 (using VB). I opened
        >>the project in VS2008 and selected the 3.5 version of NET framework.
        >>The project compiles and runs fine on my Dev machine (which of
        >>course had the new framework installed with VS 2008). I have noticed
        >>some references in web.config to 3.5 in the compiler section.
        >>>
        >>I downloaded the 3.5 framework from MSDN to the production server and
        >>installed it, requiring a reboot. I am presuming that the install
        >>registers the new framework with IIS.
        >>>
        >>I don't think I am calling any 3.5 specific Methods as I haven't
        >>really changed the code since the upgrade to VS2008.
        >>>
        >>What concerns me is when in IIS Manager, I don't see an option under
        >>the ASP.NET tab to select version 3.5.
        >>>
        >>Is there something more I need to do for that to happen? I don't
        >>want to add new 3.5 specific functionality only to find that it will
        >>not run on the production web server.
        >>>
        >>Thanks for any help in this matter...
        >
        >
        >

        Comment

        • John Kotuby

          #5
          Re: Option for .NET version 3.5 not in IIS Manager?

          Thanks to all of you who replied to my question, with the answer that v3.5
          is just considered an upgrade or major service pack to .NET 2.0.

          "John Kotuby" <JohnKotuby@dis cussions.micros oft.comwrote in message
          news:uiH4uYnaIH A.4144@TK2MSFTN GP05.phx.gbl...
          Hi all,
          >
          I am upgrading my web app from VS2005 to VS2008 (using VB). I opened the
          project in VS2008 and selected the 3.5 version of NET framework. The
          project compiles and runs fine on my Dev machine (which of course had the
          new framework installed with VS 2008). I have noticed some references in
          web.config to 3.5 in the compiler section.
          >
          I downloaded the 3.5 framework from MSDN to the production server and
          installed it, requiring a reboot. I am presuming that the install
          registers the new framework with IIS.
          >
          I don't think I am calling any 3.5 specific Methods as I haven't really
          changed the code since the upgrade to VS2008.
          >
          What concerns me is when in IIS Manager, I don't see an option under the
          ASP.NET tab to select version 3.5.
          >
          Is there something more I need to do for that to happen? I don't want to
          add new 3.5 specific functionality only to find that it will not run on
          the production web server.
          >
          Thanks for any help in this matter...
          >

          Comment

          Working...