CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    Dec 2007
    Location
    South Africa
    Posts
    263

    Attempted to read or write protected memory. This is often an indication that other m

    Good Day All

    i have an application that i use to test my example. i am creating a Cookie in Silverlight and access the Cookie in asp.net. In my example application works fine. The code for creating a Cookie is like this

    Code:
            private void SetCookies(string name, string value)
            {  
                // Call the SetCookie(name,value) JavaScript method
                string code = string.Format("document.getElementById('myIFrame').contentWindow.SetCookie('{0}','{1}')", name, value);
                HtmlPage.Window.Eval(code);
            }
    and in my Page load of the Silverlight Page i have this

    Code:
      
                HtmlElement iframe = (HtmlElement)radHtmlPlaceholder1.HtmlPresenter.Children[0];
                // Set an ID to the IFrame so that can be used later when calling the javascript
                iframe.SetAttribute("id", "myIFrame");
    I am using it this way because i want to access a Cookie or a Value from Silverlight in asp.net. The Element "RadhtmlplaceHolder1" is a telerik control that is being used as described here [LINK]http://blogs.telerik.com/kirilstanoev/posts/11-05-10/reading_writing_cookies_with_htmlplaceholder_for_silverlight.aspx[/LINK]
    i will not go to the aspx page where the Cookie is being accessed, but the problem comes when setting it in this line


    Code:
    HtmlPage.Window.Eval(code);

    Attempted to read or write protected memory. This is often an indication that other memory is corrupt


    Please note that this is on a SilverlightChild Window


    Thanks
    Last edited by vuyiswam; June 3rd, 2011 at 05:05 AM.
    Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers."

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured