Hey everyone,
I am getting this error as in attached file,...And also i have another form--aspx
cs is--
it is not workin.Showing parser error.Don't know why?...plz help me resolve these?
Thanks
Amit
I am getting this error as in attached file,...And also i have another form--aspx
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server"> <telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="True" OnNeedDataSource="RadGrid1_NeedDataSource"AllowPaging="True" AllowSorting="True" GridLines="None" Skin="Office2007" > <MasterTableView> <RowIndicatorColumn> <HeaderStyle Width="20px" /> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px" /> </ExpandCollapseColumn> </MasterTableView> <ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True"> </ClientSettings> </telerik:RadGrid> </telerik:RadAjaxPanel>protected void RadGrid1_NeedDataSource(object sender, GridNeedDataSourceEventArgs e) { dtValues = new DataTable(); dtValues.Columns.Add("Items"); dtValues.Columns.Add("Rate"); dtValues.Columns.Add("Quantity"); dtValues.Columns.Add("Amount"); }Thanks
Amit