C# ASP błąd: Could not determine a MetaTable. A MetaTable could not be determined for …

3-sty-2012

Błąd:

Could not determine a MetaTable. A MetaTable could not be determined for the data source 'xxx’ and one could not be inferred from the request URL. Make sure that the table is mapped to the dats source, or that the data source is configured with a valid context type and table name, or that the request is part of a registered DynamicDataRoute.

Okazało się, że definując GridView umieściłem omyłkowo kolumnę DynamicField zamiast BoundField. Wystarczyło poprawić w pliku aspx:

<Columns>  
      <asp:DynamicField DataField="Id" HeaderText="Id" /> 
</Columns>

na:

<Columns> 
      <asp:BoundField DataField="Id" HeaderText="Id" /> 
</Columns>

Komentarze:

  1. Roland napisał,

    Dzięki za pomoc

Autor: Rafał Kraik