Author: Pankaj18 | Posted on: 9/14/2010 11:39:57 AM | Views : 877

Hi,
I want to save fckeditor value in cookies. And fckeditor have value as " Hi <name>,  and so on .."
I am using following code :
My Code:
Save:
  private void CookiesCreated()
    {
        //Create a new cookie, passing the name
        HttpCookie cookie = new HttpCookie("BodyText");
        //Set the cookies value
        cookie.Value = Server.HtmlEncode(fckeditor.Value);
      
        //Set the cookie to expire in 1 minute
        cookie.Expires = DateTime.Now.AddMinutes(1);
        //Add the cookie
        Response.Cookies.Add(co ...

Go to the complete details ...