Going from 1.1 to 1.0

  • Thread starter Thread starter trojan
  • Start date Start date
T

trojan

Hi

I have a solution that was developed in 1.0 that used bindingmanager
and currentchanged event in a handler, this worked well in 1.0 but
when I upgraded to 1.1 the event stopped working.

the code I used is:
AddHandler m_bindClient.CurrentChanged, AddressOf Steve

Is there an easy way to return to version 1.0 or a patch for 1.1 to
fix this problem?

Thanks,

Stephen
 
trojan said:
Is there an easy way to return to version 1.0 or a patch for 1.1 to
fix this problem?

Do you mean can you revert your IIS back to use ver 1.0? Well, actually
if you have both 1.0 and 1.1 on your server, you can run apps of both
versions and switch between the two. Check out the ASP.NET version
switcher tool someone wrote to help automate this task:

http://www.denisbauer.com/NETTools/ASPNETVersionSwitcher.aspx

Note it's just a convenience tool someone wrote around the ASPNET_REGIIS
command line tool. And it's third-party, so always buyer beware, but
I've used it seems to be OK.

Otherwise, if you removed 1.0, I'd recommend just re-installing it
(dont' remove 1.1) and use the tool above, as I believe you can install
older versions after 1.1 is on there....
 
Thanks for your reply.

I am not using IIS and the two versions refer to the dot net framework
and visual studio environments. The program has been created with
1.0 upgraded to 1.1 and now needs to go back to 1.0 to avoid issues
caused by 1.1

Stephen
 
Back
Top