Demos not running properly when run through Visual Studio 2005 IDE

I´m evaluating Aspose.Grid.Web 1.9.2.

When I run the demos through the link created in the program group,everything runs fine, but

I´m having some problems when trying through run the samples through Visual Studio 2005 IDE.

Column headers doesnt scroll with the rest of the grid, buttons doesn´t respond to clicking, images in the grid does not display...

Any clues about what I may be doing wrong?

Hi,

Thanks for considering Aspose.

Are you using Asp.Net Ajax in VS.Net 2005? If so, the grid may conflict with some ajax framework. You may try to add a config setting to the web.config file. Be sure that the client files(images, scripts) are correctlly installed at the URL path "/agw_client/" in your installable folder. This config prevent the control from using embeded client resource(images, scripts, etc.). But this config will only take effect with LICENSED controls.

Please write the following lines in the web.config file. These settings will work for Asp.net AJAX.

<appSettings>

<add key="aspose.grid.web.agw_client_path" value="/agw_client/" />

<add key="aspose.grid.web.force_script_path" value="true" />

</appSettings>

Thank you.

Hi,

This problem is most possibly caused by using FILE mode website of vs 2005. You may try Amjad's suggestion, but that config settings requires licening the control first. You may also try to use HTTP mode website. Please check the following link to get more information:

<A title=

It worked.Thanks