I am trying to create an editable datagrid using <property name="Columns">, but the page returns the following error:<BR><BR>'System.Web.UI.WebControls.DataGrid' does not have a property named 'property'<BR><BR>When hovering over the <property value in the code the following message is returned:<BR><BR>'the active schema does not support the element 'property'.'<BR><BR>Any ideas what is wrong?<BR><BR>The syntax you are using above was correct in ASP.NET Beta 1, but with Beta 2 it was changed a bit. Rather than using <property name="xxx">, use <xxx>. I.e.:<BR><BR><asp:datagrid ...><BR> <Columns><BR> ...<BR> </Columns><BR></asp:datagrid><BR><BR>Make sense? Happy Programming!