I am trying to implement a splash window using telerik Radwindow. I have to implement the "Do not show" check box in the splash window so that if user click on that, the splash window will not be shown till the next release. A sample code of mine is shown below
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Width="660px" Height="540px">
<Windows>
<telerik:RadWindow ID="Win1" VisibleOnPageLoad="true" runat="server" VisibleStatusbar="false"
Animation="Fade" ShowContentDuringLoad="false" VisibleTitlebar="false" Behaviors="None"
Modal="false">
<ContentTemplate>
<img src="Images/Image.jpg" />
<telerik:RadButton ID="radButton" runat="server" Text="Close" OnClientClicked="closeRadWindow" AutoPostBack="false"></telerik:RadButton>
</ContentTemplate>
</telerik:RadWindow>
</Windows>