asp.net v2 and asp.net v1

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm creating a C# web service(locally) and i have .NET 2005 with asp.net v2
on my development box. At this time our web servers do not have asp.net v2
installed on them. Is it possible to develope and asp.net v2 and still use
asp.net v1 if i deploy to the web servers?
 
Depends on the feature set you are using.. If you are using the 1.1 features
only, you can probably deploy that onto a 1.1 server. I think its just
easier to do the develop/deploy 1.1
 
yes, but you will need to recompile the code using the old compilers and
references. VS 2005 can not do this, so you should build manual compile
scripts. look at using nant for build scripts.

-- bruce (sqlwork.com)
 
Back
Top