modifying MetaData in asp.net Dynamic Data

Posted by loviji on Stack Overflow See other posts from Stack Overflow or by loviji
Published on 2010-04-21T08:38:49Z Indexed on 2010/04/21 8:43 UTC
Read the original article Hit count: 234

Filed under:
|

Hello. I want to modify MetaData. For example, let's work with Details.aspx page. There have code:

protected void Page_Init(object sender, EventArgs e)
{
  table = DynamicDataRouteHandler.GetRequestMetaTable(Context);
  FormView1.SetMetaTable(table);
  DetailsDataSource.EntityTypeName = table.EntityType.AssemblyQualifiedName;
}

Now, how to force to modify table. alt text

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about dynamic-data