I am developing under Visual Studio 2005 and VB.net. My website is using WebGrid Ver. 5.3. I would like to develop new modules in Grid Ver. 8.2 while leaving the legacy Grid Ver. 5.3 running. How do I get the environment and intellisence to work with both grids.
For example, under 5.3, my legacy module passed in a grid via:
ByVal uwg As Infragistics.WebUI.UltraWebGrid,Webgrid
I have installed Version 8.2 and now the comiler states this statement is ambiguous. The intellisense says the param signature should be:
ByVal uwg As Infragistics.WebUI.UltraWebGrid (is this the Ver. 8.2 definition)
How do I setup the libraries, import statements and references ....
Thanks
I am running an asp.net 2.0 website
Yes, this is possible, we recently had a good discussion on this topic in another forum thread. Basically, you need to use the global assembly cache (GAC) to deploy different version of the same control at the same time and make sure you reference just the one you need. If you are upgrading old project, do a mass search for "5.3" and remove any references you have (usually, web.config and anywhere you have the grid references).
Detailed information on this topic and the GAC can be found here:
http://forums.infragistics.com/forums/t/5963.aspx
Please, let me know if this helps.