What the hell was Microsoft thinking?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • saunderl@hotmail.com

    What the hell was Microsoft thinking?

    Hello Everyone,

    I'm a lead developer of a ASP.Net site. We have over 150
    "applicatio ns" running at our site. Each application is a "Solution"
    in VS. When we roll to test and production, the main dlls are rolled
    to the sites single bin directory and the aspx, asmx etc files are
    rolled to various folders on the server.

    Now with ASP.Net 2.0 they changed everything. No longer is a web
    project a project, its a SITE. The dll names are mangled and renamed
    every time its published. What used to be just references are now part
    of the soruce control, as if I want compiled dlls in sourcesafe!

    All told, after two weeks of looking to move to ASP.net 2.0, I'll have
    to say that "It will not happen!" They have made managing a large,
    diverse site like ours impossible. Sure, Microsoft gave us lots of
    "Wiz Bang" stuff for the kiddies, but really screwed the large scale
    site developers, or so it at least seems to my team.

    All told, I think that Microsoft REALLY screwed the pooch on this one.

    L. Lee Saunders

  • Juan T. Llibre

    #2
    Re: What the hell was Microsoft thinking?

    Whoa! Hold your horses.

    Download and install the Web Deployment Projects add-in :

    Build web apps and services that run on Windows, Linux, and macOS using C#, HTML, CSS, and JavaScript. Get started for free on Windows, Linux, or macOS.


    "This add-in includes a new tool that enables you to merge
    the assemblies created during ASP.NET 2.0 precompilation"



    Juan T. Llibre, ASP.NET MVP
    ASP.NET FAQ : http://asp.net.do/faq/
    ASPNETFAQ.COM : http://www.aspnetfaq.com/
    Foros de ASP.NET en EspaƱol : http://asp.net.do/foros/
    =============== =============== ========
    <saunderl@hotma il.com> wrote in message
    news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=blue]
    > Hello Everyone,
    >
    > I'm a lead developer of a ASP.Net site. We have over 150
    > "applicatio ns" running at our site. Each application is a "Solution"
    > in VS. When we roll to test and production, the main dlls are rolled
    > to the sites single bin directory and the aspx, asmx etc files are
    > rolled to various folders on the server.
    >
    > Now with ASP.Net 2.0 they changed everything. No longer is a web
    > project a project, its a SITE. The dll names are mangled and renamed
    > every time its published. What used to be just references are now part
    > of the soruce control, as if I want compiled dlls in sourcesafe!
    >
    > All told, after two weeks of looking to move to ASP.net 2.0, I'll have
    > to say that "It will not happen!" They have made managing a large,
    > diverse site like ours impossible. Sure, Microsoft gave us lots of
    > "Wiz Bang" stuff for the kiddies, but really screwed the large scale
    > site developers, or so it at least seems to my team.
    >
    > All told, I think that Microsoft REALLY screwed the pooch on this one.
    >
    > L. Lee Saunders
    >[/color]


    Comment

    • Bruce Barker

      #3
      Re: What the hell was Microsoft thinking?

      the VS group decided to stop battling the asp.net compiler. VS2005 now uses
      the asp.net compiler to build all asp.net sites. this is why VS has a
      Publish web site command that builds a clean dir tith what needs to be
      deployed.

      in 1.1 VS build 1 dll for the code behind, and asp.net build a dll per page
      but hide it a temp. in v2, VS uses the asp.net compiler to precompile the
      site, so you see all the page dlls.

      see the aspnet_compiler documentation to see what your automated build
      options are. look at fixednames option.

      -- bruce (sqlwork.com)


      <saunderl@hotma il.com> wrote in message
      news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=blue]
      > Hello Everyone,
      >
      > I'm a lead developer of a ASP.Net site. We have over 150
      > "applicatio ns" running at our site. Each application is a "Solution"
      > in VS. When we roll to test and production, the main dlls are rolled
      > to the sites single bin directory and the aspx, asmx etc files are
      > rolled to various folders on the server.
      >
      > Now with ASP.Net 2.0 they changed everything. No longer is a web
      > project a project, its a SITE. The dll names are mangled and renamed
      > every time its published. What used to be just references are now part
      > of the soruce control, as if I want compiled dlls in sourcesafe!
      >
      > All told, after two weeks of looking to move to ASP.net 2.0, I'll have
      > to say that "It will not happen!" They have made managing a large,
      > diverse site like ours impossible. Sure, Microsoft gave us lots of
      > "Wiz Bang" stuff for the kiddies, but really screwed the large scale
      > site developers, or so it at least seems to my team.
      >
      > All told, I think that Microsoft REALLY screwed the pooch on this one.
      >
      > L. Lee Saunders
      >[/color]


      Comment

      • Erik Funkenbusch

        #4
        Re: What the hell was Microsoft thinking?

        On 11 Nov 2005 13:03:00 -0800, saunderl@hotmai l.com wrote:
        [color=blue]
        > All told, after two weeks of looking to move to ASP.net 2.0, I'll have
        > to say that "It will not happen!" They have made managing a large,
        > diverse site like ours impossible. Sure, Microsoft gave us lots of
        > "Wiz Bang" stuff for the kiddies, but really screwed the large scale
        > site developers, or so it at least seems to my team.
        >
        > All told, I think that Microsoft REALLY screwed the pooch on this one.[/color]

        Not to blame the victim here, but Microsoft has been making this stuff
        available for about TWO YEARS, and *NOW*, after it ships, you say "Hey,
        wait a minute, this doesn't work for me". Maybe you should have
        investigated the changes needed earlier, and then you could have given your
        feedback to Microsoft BEFORE they finalized the product.

        Ok, now that I have that off my chest (Sorry, It just bugs me when people
        are given access to the information for years ahead of time, and then they
        complain after its too late).

        You might want to read this article (coincidentally , it also shows how
        being involved in the process makes you proactive in getting what you
        need). It also explains WHAT they were thinking.


        Comment

        • Chris Botha

          #5
          Re: What the hell was Microsoft thinking?

          Hear, hear, I can't agree with you more. Hopefully they will add this soon.

          <saunderl@hotma il.com> wrote in message
          news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=blue]
          > Hello Everyone,
          >
          > I'm a lead developer of a ASP.Net site. We have over 150
          > "applicatio ns" running at our site. Each application is a "Solution"
          > in VS. When we roll to test and production, the main dlls are rolled
          > to the sites single bin directory and the aspx, asmx etc files are
          > rolled to various folders on the server.
          >
          > Now with ASP.Net 2.0 they changed everything. No longer is a web
          > project a project, its a SITE. The dll names are mangled and renamed
          > every time its published. What used to be just references are now part
          > of the soruce control, as if I want compiled dlls in sourcesafe!
          >
          > All told, after two weeks of looking to move to ASP.net 2.0, I'll have
          > to say that "It will not happen!" They have made managing a large,
          > diverse site like ours impossible. Sure, Microsoft gave us lots of
          > "Wiz Bang" stuff for the kiddies, but really screwed the large scale
          > site developers, or so it at least seems to my team.
          >
          > All told, I think that Microsoft REALLY screwed the pooch on this one.
          >
          > L. Lee Saunders
          >[/color]


          Comment

          • Chris Botha

            #6
            Re: What the hell was Microsoft thinking?

            Darn, if only I knew this two years ago and gave my feedback! Think it would
            have helped?

            "Erik Funkenbusch" <erik@despam-funkenbusch.com > wrote in message
            news:1crctah41f icd.dlg@funkenb usch.com...[color=blue]
            > On 11 Nov 2005 13:03:00 -0800, saunderl@hotmai l.com wrote:
            >[color=green]
            >> All told, after two weeks of looking to move to ASP.net 2.0, I'll have
            >> to say that "It will not happen!" They have made managing a large,
            >> diverse site like ours impossible. Sure, Microsoft gave us lots of
            >> "Wiz Bang" stuff for the kiddies, but really screwed the large scale
            >> site developers, or so it at least seems to my team.
            >>
            >> All told, I think that Microsoft REALLY screwed the pooch on this one.[/color]
            >
            > Not to blame the victim here, but Microsoft has been making this stuff
            > available for about TWO YEARS, and *NOW*, after it ships, you say "Hey,
            > wait a minute, this doesn't work for me". Maybe you should have
            > investigated the changes needed earlier, and then you could have given
            > your
            > feedback to Microsoft BEFORE they finalized the product.
            >
            > Ok, now that I have that off my chest (Sorry, It just bugs me when people
            > are given access to the information for years ahead of time, and then they
            > complain after its too late).
            >
            > You might want to read this article (coincidentally , it also shows how
            > being involved in the process makes you proactive in getting what you
            > need). It also explains WHAT they were thinking.
            >
            > http://www.dotnetnuke.com/Community/...5/Default.aspx[/color]


            Comment

            • PL

              #7
              Re: What the hell was Microsoft thinking?

              Try learning it instead.

              PL

              "Chris Botha" <chris_s_botha@ AThotmail.com> skrev i meddelandet news:%23tuR5yy5 FHA.1184@TK2MSF TNGP12.phx.gbl. ..[color=blue]
              > Hear, hear, I can't agree with you more. Hopefully they will add this soon.
              >
              > <saunderl@hotma il.com> wrote in message news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=green]
              >> Hello Everyone,
              >>
              >> I'm a lead developer of a ASP.Net site. We have over 150
              >> "applicatio ns" running at our site. Each application is a "Solution"
              >> in VS. When we roll to test and production, the main dlls are rolled
              >> to the sites single bin directory and the aspx, asmx etc files are
              >> rolled to various folders on the server.
              >>
              >> Now with ASP.Net 2.0 they changed everything. No longer is a web
              >> project a project, its a SITE. The dll names are mangled and renamed
              >> every time its published. What used to be just references are now part
              >> of the soruce control, as if I want compiled dlls in sourcesafe!
              >>
              >> All told, after two weeks of looking to move to ASP.net 2.0, I'll have
              >> to say that "It will not happen!" They have made managing a large,
              >> diverse site like ours impossible. Sure, Microsoft gave us lots of
              >> "Wiz Bang" stuff for the kiddies, but really screwed the large scale
              >> site developers, or so it at least seems to my team.
              >>
              >> All told, I think that Microsoft REALLY screwed the pooch on this one.
              >>
              >> L. Lee Saunders
              >>[/color]
              >
              >[/color]


              Comment

              • Chris Botha

                #8
                Re: What the hell was Microsoft thinking?

                Instead of what?

                "PL" <pblse2@yahoo.s e> wrote in message
                news:uZjPTmz5FH A.2676@TK2MSFTN GP15.phx.gbl...[color=blue]
                > Try learning it instead.
                >
                > PL
                >
                > "Chris Botha" <chris_s_botha@ AThotmail.com> skrev i meddelandet
                > news:%23tuR5yy5 FHA.1184@TK2MSF TNGP12.phx.gbl. ..[color=green]
                >> Hear, hear, I can't agree with you more. Hopefully they will add this
                >> soon.
                >>
                >> <saunderl@hotma il.com> wrote in message
                >> news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=darkred]
                >>> Hello Everyone,
                >>>
                >>> I'm a lead developer of a ASP.Net site. We have over 150
                >>> "applicatio ns" running at our site. Each application is a "Solution"
                >>> in VS. When we roll to test and production, the main dlls are rolled
                >>> to the sites single bin directory and the aspx, asmx etc files are
                >>> rolled to various folders on the server.
                >>>
                >>> Now with ASP.Net 2.0 they changed everything. No longer is a web
                >>> project a project, its a SITE. The dll names are mangled and renamed
                >>> every time its published. What used to be just references are now part
                >>> of the soruce control, as if I want compiled dlls in sourcesafe!
                >>>
                >>> All told, after two weeks of looking to move to ASP.net 2.0, I'll have
                >>> to say that "It will not happen!" They have made managing a large,
                >>> diverse site like ours impossible. Sure, Microsoft gave us lots of
                >>> "Wiz Bang" stuff for the kiddies, but really screwed the large scale
                >>> site developers, or so it at least seems to my team.
                >>>
                >>> All told, I think that Microsoft REALLY screwed the pooch on this one.
                >>>
                >>> L. Lee Saunders
                >>>[/color]
                >>
                >>[/color]
                >
                >[/color]


                Comment

                • Juan T. Llibre

                  #9
                  Re: What the hell was Microsoft thinking?

                  This whole thing is a non-issue and Microsoft has been working
                  on a solution for this for quite a long time, as blogged on by
                  Scott Guthrie for several months now.

                  The tool which solves this problem, the "Visual Studio 2005 Web
                  Deployment Projects" Add-in for VS 2005, is available *now* at :

                  Build web apps and services that run on Windows, Linux, and macOS using C#, HTML, CSS, and JavaScript. Get started for free on Windows, Linux, or macOS.


                  "This add-in includes a new tool that enables you to merge the assemblies
                  created during ASP.NET 2.0 precompilation, and it provides a comprehensive
                  UI within Visual Studio 2005 for managing build configurations, merging,
                  and pre-build and post-build task using MSBuild."

                  "A Web Deployment Project creates and maintains an MSBuild project file,
                  and is associated in a solution with a Web site project.

                  A Web Deployment Project enables you to manage not only build configuration
                  and merge options, but other tasks such as specifying changes for the application's
                  Web.config file during compilation, changing connection strings, creating virtual
                  directories, and performing other tasks at specific points in the deployment process.

                  The new assembly merge tool (Aspnet_merge.e xe) combines assemblies created
                  during ASP.NET 2.0 precompilation for deployment. The tool supports many merge
                  options, from combining assemblies for each Web site folder to creating a single
                  assembly for the entire Web site."

                  Don't forget to download these very helpful documents :

                  "Using Web Deployment Projects with Visual Studio 2005"


                  and
                  "Managing ASP.NET Pre-compiled Outputs with Aspnet_merge.ex e Command"





                  Juan T. Llibre, ASP.NET MVP
                  ASP.NET FAQ : http://asp.net.do/faq/
                  ASPNETFAQ.COM : http://www.aspnetfaq.com/
                  Foros de ASP.NET en EspaƱol : http://asp.net.do/foros/
                  =============== =============== ========
                  "Erik Funkenbusch" <erik@despam-funkenbusch.com > wrote in message
                  news:1crctah41f icd.dlg@funkenb usch.com...[color=blue]
                  > On 11 Nov 2005 13:03:00 -0800, saunderl@hotmai l.com wrote:
                  >[color=green]
                  >> All told, after two weeks of looking to move to ASP.net 2.0, I'll have
                  >> to say that "It will not happen!" They have made managing a large,
                  >> diverse site like ours impossible. Sure, Microsoft gave us lots of
                  >> "Wiz Bang" stuff for the kiddies, but really screwed the large scale
                  >> site developers, or so it at least seems to my team.
                  >>
                  >> All told, I think that Microsoft REALLY screwed the pooch on this one.[/color][/color]
                  [color=blue]
                  > Not to blame the victim here, but Microsoft has been making this stuff
                  > available for about TWO YEARS, and *NOW*, after it ships, you say "Hey,
                  > wait a minute, this doesn't work for me". Maybe you should have
                  > investigated the changes needed earlier, and then you could have given your
                  > feedback to Microsoft BEFORE they finalized the product.
                  >
                  > Ok, now that I have that off my chest (Sorry, It just bugs me when people
                  > are given access to the information for years ahead of time, and then they
                  > complain after its too late).
                  >
                  > You might want to read this article (coincidentally , it also shows how
                  > being involved in the process makes you proactive in getting what you
                  > need). It also explains WHAT they were thinking.
                  >
                  > http://www.dotnetnuke.com/Community/...5/Default.aspx[/color]


                  Comment

                  • Jon Paal

                    #10
                    Re: What the hell was Microsoft thinking?

                    I appreciate your frustration. Moving to ASP.net 2.0 is another huge shift. I have many clients on ASP.net 1.x and they will
                    likely never upgrade to 2.0

                    This leaves developers with the ever growing problem of maintaining 3 independent versions of ASP websites. The classic ASP, the
                    ASP.net 1.x and now the ASP.net 2.0

                    Not a very attractive prospect.


                    ---------------------------------------------------------
                    Knowledge comes and goes, but wisdom lingers









                    <saunderl@hotma il.com> wrote in message news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=blue]
                    > Hello Everyone,
                    >
                    > I'm a lead developer of a ASP.Net site. We have over 150
                    > "applicatio ns" running at our site. Each application is a "Solution"
                    > in VS. When we roll to test and production, the main dlls are rolled
                    > to the sites single bin directory and the aspx, asmx etc files are
                    > rolled to various folders on the server.
                    >
                    > Now with ASP.Net 2.0 they changed everything. No longer is a web
                    > project a project, its a SITE. The dll names are mangled and renamed
                    > every time its published. What used to be just references are now part
                    > of the soruce control, as if I want compiled dlls in sourcesafe!
                    >
                    > All told, after two weeks of looking to move to ASP.net 2.0, I'll have
                    > to say that "It will not happen!" They have made managing a large,
                    > diverse site like ours impossible. Sure, Microsoft gave us lots of
                    > "Wiz Bang" stuff for the kiddies, but really screwed the large scale
                    > site developers, or so it at least seems to my team.
                    >
                    > All told, I think that Microsoft REALLY screwed the pooch on this one.
                    >
                    > L. Lee Saunders
                    >[/color]


                    Comment

                    • Kevin Spencer

                      #11
                      Re: What the hell was Microsoft thinking?

                      > This leaves developers with the ever growing problem of maintaining 3[color=blue]
                      > independent versions of ASP websites. The classic ASP, the ASP.net 1.x
                      > and now the ASP.net 2.0
                      >
                      > Not a very attractive prospect.[/color]

                      This sort of dilemma is something we all (including Microsoft) struggle
                      with.

                      The question of when to apply a band-aid, and when to perform major surgery
                      and break the existing model, is one which every good developer agonizes
                      over. Every good programmer is a perfectionist, and that is a good thing.
                      However, every programmer, good and bad, must deal with the reality that
                      perfection is only something that can be approached, and never achieved. The
                      points where the compromise is finally made, are the points of the horns of
                      this dilemma.

                      The good news is, as we all do struggle with it, we are relatively no worse
                      off nor better off than anyone else. The playing field remains level and
                      intact.

                      --
                      HTH,

                      Kevin Spencer
                      Microsoft MVP
                      ..Net Developer
                      There's a seeker born every minute.
                      - Dr. "Happy" Harry Cox

                      "Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
                      news:OdHvDA85FH A.1096@TK2MSFTN GP10.phx.gbl...[color=blue]
                      >I appreciate your frustration. Moving to ASP.net 2.0 is another huge
                      >shift. I have many clients on ASP.net 1.x and they will likely never
                      >upgrade to 2.0
                      >
                      > This leaves developers with the ever growing problem of maintaining 3
                      > independent versions of ASP websites. The classic ASP, the ASP.net 1.x
                      > and now the ASP.net 2.0
                      >
                      > Not a very attractive prospect.
                      >
                      >
                      > ---------------------------------------------------------
                      > Knowledge comes and goes, but wisdom lingers
                      >
                      >
                      >
                      >
                      >
                      >
                      >
                      >
                      >
                      > <saunderl@hotma il.com> wrote in message
                      > news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=green]
                      >> Hello Everyone,
                      >>
                      >> I'm a lead developer of a ASP.Net site. We have over 150
                      >> "applicatio ns" running at our site. Each application is a "Solution"
                      >> in VS. When we roll to test and production, the main dlls are rolled
                      >> to the sites single bin directory and the aspx, asmx etc files are
                      >> rolled to various folders on the server.
                      >>
                      >> Now with ASP.Net 2.0 they changed everything. No longer is a web
                      >> project a project, its a SITE. The dll names are mangled and renamed
                      >> every time its published. What used to be just references are now part
                      >> of the soruce control, as if I want compiled dlls in sourcesafe!
                      >>
                      >> All told, after two weeks of looking to move to ASP.net 2.0, I'll have
                      >> to say that "It will not happen!" They have made managing a large,
                      >> diverse site like ours impossible. Sure, Microsoft gave us lots of
                      >> "Wiz Bang" stuff for the kiddies, but really screwed the large scale
                      >> site developers, or so it at least seems to my team.
                      >>
                      >> All told, I think that Microsoft REALLY screwed the pooch on this one.
                      >>
                      >> L. Lee Saunders
                      >>[/color]
                      >
                      >[/color]


                      Comment

                      • Mark Rae

                        #12
                        Re: What the hell was Microsoft thinking?

                        "Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
                        news:OdHvDA85FH A.1096@TK2MSFTN GP10.phx.gbl...
                        [color=blue]
                        >I appreciate your frustration. Moving to ASP.net 2.0 is another huge
                        >shift. I have many clients on ASP.net 1.x and they will likely never
                        >upgrade to 2.0
                        >
                        > This leaves developers with the ever growing problem of maintaining 3
                        > independent versions of ASP websites. The classic ASP, the ASP.net 1.x
                        > and now the ASP.net 2.0[/color]

                        I find Microsoft Virtual PC absolutely invaluable for this sort of
                        situation, and also for testing and support.

                        Currently, I only have one ASP classic site still in production and under
                        support - you may laugh, but it runs on NT4, MTS2 & SQL Server 6.5!!! Still,
                        the client pays an annual five-figure sum for support and, by now, the
                        system is so stable that I haven't received a single support call in over
                        two years... Every so often, we exchange emails about upgrading, but it
                        still hasn't happened. Therefore, I have a VPC built with exactly this
                        configuration, totally isolated from the rest of my system.

                        I have 13 v1.1 sites in production, five of which have been fully upgraded
                        to v2.0 and are ready to roll out. However, although my ISP supports v2.0
                        (and has done all through the Go-Live beta), they will not be upgrading to
                        SQL Server 2005 for a month or so, so I'm waiting until then before rolling
                        these five sites out to the public internet. My ISP is also about to start
                        supporting SQL Server Reporting Services, which means I can *finally* ditch
                        Crystal Reports - hurrah!

                        I've just ordered a new development box which will only have v2.0 of the
                        Framework on it. It will have a large VPC with VS.NET 2003 & SQL Server 2000
                        on it for as long as it needs to.

                        VPC is also fantastic for testing and support. E.g. if I get a support call
                        in response to a web error, I can tell from the contents of the error email
                        precisely the version of Windows and make, model and version of the browser
                        so I can simulate the user's environment very closely. E.g. if the error
                        email says the user was using Windows XP Home and FireFox, I can have a test
                        system in VPC using exactly that configuration in less than 30 minutes.

                        I'm currently evaluating the pros and cons of buying a Mac Mini for testing
                        and support purposes. I've always resisted this but, since the Mac Mini
                        supports both Mac & PC periperhals (keyboard, video & mouse) it will fit
                        straight into my KVM, so I think the time has come...


                        Comment

                        • Jon Paal

                          #13
                          Re: What the hell was Microsoft thinking?

                          It appears that some are not enduring the same level of difficulty.
                          PHP has been evolving for 10 years and at version 5 still appears to be far more backward compatible.



                          "Kevin Spencer" <kevin@DIESPAMM ERSDIEtakempis. com> wrote in message news:uLaxV2F6FH A.2640@TK2MSFTN GP10.phx.gbl...[color=blue][color=green]
                          >> This leaves developers with the ever growing problem of maintaining 3 independent versions of ASP websites. The classic ASP, the
                          >> ASP.net 1.x and now the ASP.net 2.0
                          >>
                          >> Not a very attractive prospect.[/color]
                          >
                          > This sort of dilemma is something we all (including Microsoft) struggle with.
                          >
                          > The question of when to apply a band-aid, and when to perform major surgery and break the existing model, is one which every good
                          > developer agonizes over. Every good programmer is a perfectionist, and that is a good thing. However, every programmer, good and
                          > bad, must deal with the reality that perfection is only something that can be approached, and never achieved. The points where the
                          > compromise is finally made, are the points of the horns of this dilemma.
                          >
                          > The good news is, as we all do struggle with it, we are relatively no worse off nor better off than anyone else. The playing field
                          > remains level and intact.
                          >
                          > --
                          > HTH,
                          >
                          > Kevin Spencer
                          > Microsoft MVP
                          > .Net Developer
                          > There's a seeker born every minute.
                          > - Dr. "Happy" Harry Cox
                          >
                          > "Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message news:OdHvDA85FH A.1096@TK2MSFTN GP10.phx.gbl...[color=green]
                          >>I appreciate your frustration. Moving to ASP.net 2.0 is another huge shift. I have many clients on ASP.net 1.x and they will
                          >>likely never upgrade to 2.0
                          >>
                          >> This leaves developers with the ever growing problem of maintaining 3 independent versions of ASP websites. The classic ASP, the
                          >> ASP.net 1.x and now the ASP.net 2.0
                          >>
                          >> Not a very attractive prospect.
                          >>
                          >>
                          >> ---------------------------------------------------------
                          >> Knowledge comes and goes, but wisdom lingers
                          >>
                          >>
                          >>
                          >>
                          >>
                          >>
                          >>
                          >>
                          >>
                          >> <saunderl@hotma il.com> wrote in message news:1131739796 .300134.60100@g 44g2000cwa.goog legroups.com...[color=darkred]
                          >>> Hello Everyone,
                          >>>
                          >>> I'm a lead developer of a ASP.Net site. We have over 150
                          >>> "applicatio ns" running at our site. Each application is a "Solution"
                          >>> in VS. When we roll to test and production, the main dlls are rolled
                          >>> to the sites single bin directory and the aspx, asmx etc files are
                          >>> rolled to various folders on the server.
                          >>>
                          >>> Now with ASP.Net 2.0 they changed everything. No longer is a web
                          >>> project a project, its a SITE. The dll names are mangled and renamed
                          >>> every time its published. What used to be just references are now part
                          >>> of the soruce control, as if I want compiled dlls in sourcesafe!
                          >>>
                          >>> All told, after two weeks of looking to move to ASP.net 2.0, I'll have
                          >>> to say that "It will not happen!" They have made managing a large,
                          >>> diverse site like ours impossible. Sure, Microsoft gave us lots of
                          >>> "Wiz Bang" stuff for the kiddies, but really screwed the large scale
                          >>> site developers, or so it at least seems to my team.
                          >>>
                          >>> All told, I think that Microsoft REALLY screwed the pooch on this one.
                          >>>
                          >>> L. Lee Saunders
                          >>>[/color]
                          >>
                          >>[/color]
                          >
                          >[/color]


                          Comment

                          • Mark Rae

                            #14
                            Re: What the hell was Microsoft thinking?

                            "Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
                            news:O40Rg$H6FH A.4024@TK2MSFTN GP15.phx.gbl...
                            [color=blue]
                            > It appears that some are not enduring the same level of difficulty.
                            > PHP has been evolving for 10 years and at version 5 still appears to be
                            > far more backward compatible.[/color]

                            So why not stick with that...?


                            Comment

                            • Chris Botha

                              #15
                              Re: What the hell was Microsoft thinking?

                              I am still agreeing with the "What the hell was Microsoft thinking?"
                              I am not a Web developer exclusively but have pushed out a number of fair to
                              biggish sized Web apps since VS2003 and I am very (sort of extremely)
                              comfortable with how everything works.
                              There are some valuable new controls in the new release, and this is
                              expected, but someone still has to point out the value of the new improved
                              structure and some other constraints I bumped into when converting a
                              smallish 2003 project to 2005 (23 forms and 21 user controls took me more
                              than a day, relative I guess, maybe I am slow).
                              I would have said have them both then, the old structure/concept and the new
                              improved one for people with more time on their hands.


                              "Mark Rae" <mark@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
                              news:uR%23D6tI6 FHA.3232@TK2MSF TNGP15.phx.gbl. ..[color=blue]
                              > "Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
                              > news:O40Rg$H6FH A.4024@TK2MSFTN GP15.phx.gbl...
                              >[color=green]
                              >> It appears that some are not enduring the same level of difficulty.
                              >> PHP has been evolving for 10 years and at version 5 still appears to be
                              >> far more backward compatible.[/color]
                              >
                              > So why not stick with that...?
                              >[/color]


                              Comment

                              Working...