Exporter datagrid vers un fichier excel ou word [C#][ASP.NET1.1] - ASP - Programmation
Marsh Posté le 23-06-2007 à 18:45:07
Est ce que tu as vérifié si tu as bien placé ton DataGrid entre des balises "form".
'DataGridLinkButton' must be placed inside a form tag with runat=server.
Je pense que ton DataGrid, lorsque l'option AllowSorting est à true, a besoin de passer par le serveur pour charger correctement les données.
Marsh Posté le 25-05-2007 à 08:56:51
Bonjour,
Voila, je souhaite exporter la datagrid de ma page aspx dans un fichier excel et word. J'ai utilisé cette fonction
Lorsque j'execute cette fonction, j'ai une erreur:
Control 'MetadataDataGrid__ctl1__ctl0' of type 'DataGridLinkButton' must be placed inside a form tag with runat=server.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Control 'MetadataDataGrid__ctl1__ctl0' of type 'DataGridLinkButton' must be placed inside a form tag with runat=server.
J'ai trouve ou provient cette erreur, elle a lieu parce que j'ai l'option AllowSorting="true" d'activer de ma datagrid dans ma page aspx. Quand je la passe a false, ma fonction d'export vers un fichier excel marche niquel.
Donc que faire pour pouvoir exporter vers excel ou word tout en conserver l'attribut AllowSorting="true"? (je ne peux malheureusement pas me passer de cette option)
Merci d'avance
++