asp.net configuration

  • Thread starter Thread starter parez
  • Start date Start date
P

parez

Hi All,

I have an old application written in .net 1.1. and i am trying to
write a new feature in 2.0.


This is what i am trying to do.


x.y.com/abc --> site 1 (.net 1.1)
x.y.com/def --> site 2 (.net 2.0)


The reason why I am tryin to do this is because i tried


x.y.com/abc --> site 1 (.net 1.1)
x.y.com/def --> site 1 (.net 2.0)


and it did not work for me.If you can tell me how to make this happen
it would be great.


Thanks all in advnace.
 
You're going to have difficulty doing that because each folder will have to
be it's own virtual appplication which means they will be separate. You may
want to see if you can just upgrade the whole website to .net 2.0. In most
cases everything should upgrade rather smoothly with little to no change.
This will then allow you to seamlessly add new additions to the website that
are integrated into the website but also take advantage of new 2.0 features.
 
To use ASP.net 1.1 and ASP.Net 2.0 in one application.
You have to use virtual directories. Speak with your hosting and request 2
virtual directories.
one of them configured as 1.1 and the other one cofigured as 2.0

may be it helps
 
re:
!> To use ASP.net 1.1 and ASP.Net 2.0 in one application.

You cannot do that if you use certain sections of web.config.

There's incompatibilities which crash applications if sections of web.config
which only work in one version of the .Net framework are used in an application
configured for another version of the .Net framework.

You can have different ASP.net 1.1 and ASP.Net 2.0 applications running side-by-side, though.





Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
 
Back
Top