RadEditor for ASP.NET

RadEditor Send comments on this topic.
CookieExpirationTime Property
See Also 
Telerik.WebControls Namespace > RadEditor Class : CookieExpirationTime Property


Gets or sets the time-out period (in minutes) allowed between requests before the expiration of the cookie, used for storage of the RadEditor's dialog related data.   

 

Namespace: Telerik.WebControls
Assembly: RadEditor (in RadEditor.dll)

Syntax

Visual Basic (Declaration) 
Public Property CookieExpirationTime As Integer
Visual Basic (Usage)Copy Code
Dim instance As RadEditor
Dim value As Integer
 
instance.CookieExpirationTime = value
 
value = instance.CookieExpirationTime
C# 
public int CookieExpirationTime {get; set;}

Return Value

Time-out period in minutes. The default value is 40.

Example

This example demonstrates how to set the RadEditor to use cookies for storing its dialog related data and to set the cookie expiration time-out to 60 minutes.

<rade:radeditor
runat="server"
id="RadEditor1"
usesession="false"
cookieexpirationtime="60">
<rade:radeditor>

Remarks

The value of this property is used when the value of the UseSession property is false.

Requirements

Platforms: Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also