Hi
Thank you for the reply.
I still have trouble saving the content of a gridweb to a downloadable file from an ASP.Net-page
My gridweb in inside a update panel , i.e. the webform is build with ajax call,.
So the response options doesn’t work.
And the controls of the gridweb, and save button is also not working. And neither is the right clicking possiblities
I read, that the aspose gridweb do work with ajax, but I cant find any guidelines for how to do it.
Regards Thomas
<!--Excel Results -->
<asp:UpdatePanel ID="UpdatePanelExcel" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:UpdateProgress ID="UpdateProgressExcel" runat="server" DisplayAfter="300" DynamicLayout="true">
<ProgressTemplate>
<img src="Images/ajax-loader-bar2.gif" />
<br />
data loading .. please wait
<!-- http://ajaxload.info/ -->
</ProgressTemplate>
</asp:UpdateProgress>
<label>Hest</label>
<cc1:GridWeb ID="GW_Excel" runat="server" ShowLoading="true" ViewPanelScrollTop="true" Enabled ="true" Visible="true" XhtmlMode="True" EnableAJAX="true" OnSaveCommand="GW_Excel_SaveCommand" OnSubmitCommand="GW_Excel_SubmitCommand"></cc1:GridWeb>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="navSubmit" />
</Triggers>
</asp:UpdatePanel>