or

<telerik:RadFilter ID="RadFilter1" runat="server" FilterContainerID="gvMission" > <fieldeditors> <telerik:RadFilterTextFieldEditor DisplayName="Lane" FieldName="Lane" TextBoxWidth="120" /> </fieldeditors> </telerik:RadFilter><telerik:RadComboBox ID="clientusersRadComboBox" runat="server" DataTextField="fullname" DataValueField="userid" AppendDataBoundItems="true" Height="150px"> <Items> <telerik:RadComboBoxItem Text="Select User" /> </Items></telerik:RadComboBox>var rsClientUsers = from rsU in DB.tbl_users where rsU.clientid == intClientID && !(from rsL in DB.tbl_licenses where rsL.moduleid == intModuleID && rsL.clientid == intClientID select rsL.userid).Contains(rsU.userid) orderby rsU.firstname select new { fullname = rsU.firstname + ' ' + rsU.lastname, userid = rsU.userid };clientusersRadComboBox.DataSource = rsClientUsers;clientusersRadComboBox.DataBind();
<tools name="Toolbar7" dockable="true" > <tool name="CrossLinking" /></tools>.reTool .CrossLinking{ background-position: center center; background-image: url('../Images/4x_cross-refrence.png'); background-repeat: no-repeat; /* CSS Background image hack for IE 6. Tried below CSS hack for IE 6 its not working in both the cases with hack and without hack*/ _background-image: url('../Images/4x_cross-refrence.png'); }<rade:RadEditor runat="server" ID="RadRiskEvntCatDesc" ToolsFile="~/client/XML/RadEditorTools/MemoDefaultTools.xml" SkinID="WebBlue" EditMode="Design" ToolbarMode="Floating" ContentAreaCssFile ="~/client/CSS/EditorContentAreaStyles.css"></rade:RadEditor> I created one daily recurrence appointment from 1/1/2012 to 1/5/2012 in radscheduler using contextmenu. after that i deleted the 1/3/2012 occurrence, when i am loading the radscheduler next time i have to omit the deleted item , could you please any one tell me how can i achieve this?
ex: i am getting the exchange appointment items and bind it into radscheduler. i deleted one occurrence(1/3/2012) in exchange. after that i refresh my page, there is no changes in the radscheduler control. i checked the exchangeappointment properties. in that no property to find the deleted items. could you please any one help me how can i identify this
Thanks.