Eric
Eric

Reputation: 8078

Telerik controls - .NET Version compatibility issues

I enhanced an old website just a bit, but the problem is I used telerik controls which requires a higher version of .net than the original website has. The website is hosted externally, and I only have access to the website itself through an ftp site.

My question is what is the easiest way to set up this site to be able to handle .net 4.0? I believe 4.0 is already backwards compatible. I'm almost sure that the version of IIS on the old server is running .net 4.0.

Thank you in advance..

Upvotes: 1

Views: 200

Answers (1)

Adam Robinson
Adam Robinson

Reputation: 185603

You can't run .NET applications that depend on different versions of the .NET runtime within the same application pool. Unfortunately, if the only control you have is via FTP, you have no means of configuring the application pool for this or any other application. You'll have to ask your hosting company to set up an application pool for the directory for this site so that you can run .NET 4.0.

Upvotes: 1

Related Questions