or
<%@ Page Language="c#" CodeBehind="testdetailsview.aspx.cs" Inherits="mWebPortal.test"%> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns='http://www.w3.org/1999/xhtml'> <head> <title>Declarative relations in hierarchical ASP.NET Grid | RadGrid Demo</title> </head> <body> <form id="form1a" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="QsfSkinManager" runat="server" ShowChooser="true" /> <telerik:RadFormDecorator ID="QsfFromDecorator" runat="server" DecoratedControls="All" EnableRoundedCorners="false" /> <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadGrid1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGrid1"></telerik:AjaxUpdatedControl> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <telerik:RadGrid ID="RadGrid1" ShowStatusBar="True" DataSourceID="EntityDataSourceReferrals" runat="server" PageSize="7" AllowSorting="True" AllowPaging="True" GridLines="None" CellSpacing="0"> <PagerStyle Mode="NumericPages"></PagerStyle> <MasterTableView DataSourceID="EntityDataSourceReferrals" DataKeyNames="ID" AllowMultiColumnSorting="True"> <DetailTables> <telerik:GridTableView DataKeyNames="REFERRALID" DataSourceID="EntityDataSourceRefAttachments" Width="100%" runat="server"> <ParentTableRelation> <telerik:GridRelationFields DetailKeyField="REFERRALID" MasterKeyField="ID"> </telerik:GridRelationFields> </ParentTableRelation> </telerik:GridTableView> </DetailTables> </MasterTableView> </telerik:RadGrid> <asp:EntityDataSource ID="EntityDataSourceReferrals" runat="server" ConnectionString="name=RefEntities" DefaultContainerName="RefEntities" EnableFlattening="False" EntitySetName="Referrals"> </asp:EntityDataSource> <asp:EntityDataSource ID="EntityDataSourceRefAttachments" runat="server" ConnectionString="name=RefEntities" DefaultContainerName="RefEntities" EnableFlattening="False" EntitySetName="ReferralAttachments" AutoGenerateWhereClause="True"> </asp:EntityDataSource> </form> </body></html>
What must be done to save the settings per user or per machine in a similar fashion with the new persistence framework? Regards, John

