Click here to Skip to main content
15,886,541 members
Home / Discussions / WPF
   

WPF

 
NewsRe: Control Template not applied Pin
Lutosław14-May-11 13:12
Lutosław14-May-11 13:12 
GeneralRe: Control Template not applied [modified] Pin
Mark Salsbery14-May-11 13:21
Mark Salsbery14-May-11 13:21 
GeneralRe: Control Template not applied Pin
Lutosław14-May-11 14:29
Lutosław14-May-11 14:29 
QuestionObject looses a Cookie Value in Silverlight Pin
Vimalsoft(Pty) Ltd14-May-11 5:12
professionalVimalsoft(Pty) Ltd14-May-11 5:12 
QuestionRe: Object looses a Cookie Value in Silverlight Pin
Mark Salsbery14-May-11 7:21
Mark Salsbery14-May-11 7:21 
AnswerRe: Object looses a Cookie Value in Silverlight Pin
Vimalsoft(Pty) Ltd14-May-11 7:31
professionalVimalsoft(Pty) Ltd14-May-11 7:31 
AnswerRe: Object looses a Cookie Value in Silverlight Pin
Abhinav S15-May-11 5:29
Abhinav S15-May-11 5:29 
GeneralRe: Object looses a Cookie Value in Silverlight Pin
Vimalsoft(Pty) Ltd15-May-11 5:35
professionalVimalsoft(Pty) Ltd15-May-11 5:35 
Good Day Abhinav

this is the exact code i use. The Problem is not in storing and retrieving of the cookie, but it lies in transporting it from the Silverlight to a service.when i pass it to a service method, on the way the value get lost. This code was working for days, after i formated my machine the same thing does not work anymore.


This is my generic functions i use to deal with cookies and when i debug i can see the value be retrieved from a cookie and being passed to a wcf method.


public static void DeleteCookie(string key)
       {
           //string oldCookie = HtmlPage.Document.GetProperty("cookie") as String;
           DateTime expiration = DateTime.UtcNow - TimeSpan.FromDays(1);
           string cookie = String.Format("{0}=;expires={1}", key, expiration.ToString("R"));
           HtmlPage.Document.SetProperty("cookie", cookie);
       }


public static void SetCookie(string key, string value)
       {

          // string oldCookie = HtmlPage.Document.GetProperty("cookie") as String;
           DateTime expiration = DateTime.UtcNow + TimeSpan.FromDays(2000);
           string cookie = String.Format("{0}={1};expires={2}", key, value, expiration.ToString("R"));
           HtmlPage.Document.SetProperty("cookie", cookie);
       }

/// 
        /// Retrieves an existing cookie
        /// 
        /// cookie key
        /// null if the cookie does not exist, otherwise the cookie value
        public static string GetCookie(string key)
        {
            string[] cookies = HtmlPage.Document.Cookies.Split(';');
            key += '=';
            foreach (string cookie in cookies)
            {
                string cookieStr = cookie.Trim();
                if (cookieStr.StartsWith(key, StringComparison.OrdinalIgnoreCase))
                {
                    string[] vals = cookieStr.Split('=');

                    if (vals.Length >= 2)
                    {
                        return vals[1];
                    }

                    return string.Empty;
                }
            }

            return null;
        }


Thanks
Vuyiswa Maseko,

Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.

C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.com
vuyiswa@its.co.za
http://www.itsabacus.co.za/itsabacus/

QuestionMVVM Model Pin
Member 455049313-May-11 1:34
Member 455049313-May-11 1:34 
AnswerRe: MVVM Model Pin
Nicolai Schrade13-May-11 4:04
Nicolai Schrade13-May-11 4:04 
AnswerRe: MVVM Model [modified] Pin
RobCroll14-May-11 0:52
RobCroll14-May-11 0:52 
AnswerRe: MVVM Model Pin
Abhinav S15-May-11 5:27
Abhinav S15-May-11 5:27 
AnswerRe: MVVM Model Pin
_Maxxx_16-May-11 2:45
professional_Maxxx_16-May-11 2:45 
QuestionAbout Apllication More Memory usage Pin
Member 455049313-May-11 1:29
Member 455049313-May-11 1:29 
QuestionRe: About Apllication More Memory usage Pin
Mark Salsbery13-May-11 6:15
Mark Salsbery13-May-11 6:15 
AnswerRe: About Apllication More Memory usage Pin
Member 455049315-May-11 5:18
Member 455049315-May-11 5:18 
AnswerRe: About Apllication More Memory usage Pin
Vimalsoft(Pty) Ltd15-May-11 5:39
professionalVimalsoft(Pty) Ltd15-May-11 5:39 
QuestionShow task bar after maximise the window in wpf Pin
Naufalkk13-May-11 0:08
Naufalkk13-May-11 0:08 
QuestionWPF DataGrid - automatically insert new line on tab in last visible column Pin
Nicolai Schrade12-May-11 4:05
Nicolai Schrade12-May-11 4:05 
AnswerRe: WPF DataGrid - automatically insert new line on tab in last visible column Pin
dasblinkenlight12-May-11 4:38
dasblinkenlight12-May-11 4:38 
GeneralRe: WPF DataGrid - automatically insert new line on tab in last visible column Pin
Nicolai Schrade13-May-11 4:00
Nicolai Schrade13-May-11 4:00 
GeneralRe: WPF DataGrid - automatically insert new line on tab in last visible column Pin
dasblinkenlight13-May-11 4:10
dasblinkenlight13-May-11 4:10 
GeneralRe: WPF DataGrid - automatically insert new line on tab in last visible column Pin
Nicolai Schrade13-May-11 4:44
Nicolai Schrade13-May-11 4:44 
Questionincorrect value retrieved. Pin
arkiboys11-May-11 3:35
arkiboys11-May-11 3:35 
AnswerRe: incorrect value retrieved. Pin
Ian Shlasko11-May-11 3:40
Ian Shlasko11-May-11 3:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.