Re: How to enable ASP.NET 3.5 to ASP.NET 3.5 Exten sions?
|
Parten Onslow |
|
6/3/2008 4:17:31 AM |
Or How do I convert ASP.NET 2.0 website to ASP.NET 3.5 with Extensions ? Post Comments |
|
Re: Open the solution for the project
|
Thomas Billings |
|
6/3/2008 4:18:16 AM |
Open the solution for the project is Visual Studio 2008 and change the target type from 2.0 to 3.5. You will then be able to start using all the exte nsion to the 2.0 framework. Post Comments |
|
Re: Thanks for the answer
|
Parten Onslow |
|
6/3/2008 4:20:20 AM |
Peinji, Thanks for the answer. Actually, I have a ASP.NET 2.0 application and I want to use ASP.NET 3.5 Extensions, I did not find any way to do this, ASP.NET 2.0 to ASP.NET 3.0 is very simple, just open your solution and VS2008 will prompt you to convert it to 3.5. But once it is converted to ASP.NET 3.5, there is no option to enable Extensions on it. Anyway I have done it manually. Following is what I did:
1. Converted ASP.NET 2.0 application to ASP.NET 3. 5 2. Created a new ASP.NET 3.5 Extensions application 3. Copied all the necessary files and folders to n ew Extensions enabled application from 2.0 to 3.5 converted application While copying the DLLs do not copy the Ajax relate d DLLs, as they are inbuilt in Extensions, whereas you have to add the Ajax control toolkit dll manu ally (if you are using it) as it is not part of Ex tensions.Moreover, do not replace the Web.config f rom old project to new project, rather, copy the n ecessary strings manually. If you replace the web. config, you may not get the Extensions options any more in your toolbar :) Thanks, Post Comments |
|
Re: How to enable ASP.NET 3.5 to ASP.NET 3.5 Exten sions?
|
Rebbecca Stein |
|
6/3/2008 4:19:00 AM |
Hi Calson, check out this readme: http://asp.net/downloads/3.5-extensions/readme/. It should cover the basics of getting started with ASP.NET 3.5 Extensions Preview.
Post Comments |
|
Rebecca, Thanks, although now I am done with the approach I have mentioned above, This is what I was looking for, this link is having all the necessary information. Regards,
Post Comments |
|