Click here to Skip to main content
15,887,175 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i have an old application written in asp.net 1.1, i recently made some change to it,and upgraded version to .net 2 on iis,as i had some parse error,so i changed the .net 1.1 version to 2,now i'm not having any error. but textbox change event is not firing i assume,as its working fine locally but not on server. on some pages css also looks a bit different then on local version.

Can i have some suggestions what could be going wrong
Posted

1 solution

The problem is that there is a huge ambiguity between the libraries and assemblies that are required to run the ASP.NET website (or application). You are having some glitches and ambiguities in-between your ASP.NET assemblies, and the required .NET platform version etc. You need to configure your applications on local as well as server side to run the website (ASP.NET version) on a specific .NET version; on both machines.

My advice to you would be, to start creating the same application from scratch. ASP.NET is now moving forward to 5th version[^]. So, I would like to ask you to please move on to the next version of ASP.NET, it would help you remove those errors. Hopefully, you would be required to update the version on the server too; not just on the local server.
 
Share this answer
 
Comments
coder771 26-Jan-15 8:48am    
hi thanks for the help. at the moment i just found out by adding a line xhtmlconformance="legacy" in web.config ,its working and no more exceptions

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900