This Page has been modified since you opened it. You must open the page again.
hi all This Page has been modified since you opened it. You must open the page again.
April 30th, 2009 8:44am

Moving to Admin as this isn't customization. But what exactly is this ? We need more information. For instance what are you doing (and in what product) when you get this message?WSS FAQ sites: WSS 2.0: http://wssv2faq.mindsharp.com WSS 3.0 and MOSS 2007: http://wssv3faq.mindsharp.com Total list of WSS 3.0 and MOSS 2007 Books (including foreign language titles) http://wssv3faq.mindsharp.com/Lists/v3%20WSS%20FAQ/V%20Books.aspx
Free Windows Admin Tool Kit Click here and download it now
April 30th, 2009 9:07am

Hi, Could you please tell me when do you get this error message? If you get this error message when you try to add a web part to a page, it is because that you are using PublishingLayoutPage instead of TemplateRedirectionPage in your custom default.aspx. If you get this error message after detaching a page from its page layout, this happens because the MSO_PageHashCode is not cleared; you should add JavaScript to the detached pate in page library. Let me know the result.Xue-Mei Chang
May 5th, 2009 10:53am

Do you have MSO_PageHashCode clearing example javascript?
Free Windows Admin Tool Kit Click here and download it now
June 29th, 2009 9:24pm

I am clearing it on page load like this:document.getElementById("MSO_PageHashCode").value="";I didnt get this error after clearing it yet. I would like to know what this does though as i couldnt find anything on it online.
July 27th, 2009 11:51pm

Hi guys! Solved this by using the javacode sample that f00z posted. It does however generate an javascript error from time to time: Message: 'document.getElementById(...)' is null or not an object So, the value does not exist on all pages. Any way one can add some code to avoid this? Regards, Mats
Free Windows Admin Tool Kit Click here and download it now
September 9th, 2009 4:18pm

How about this?if(document.getElementById("MSO_PageHashCode")){ document.getElementById("MSO_PageHashCode").value="";}
September 9th, 2009 5:54pm

Yep, that did the trick! Thanks!
Free Windows Admin Tool Kit Click here and download it now
September 11th, 2009 3:16pm

Thanks a lot for this trick ! It does the job !
December 11th, 2009 10:11pm

Hi, can you please let me know where I need to add this Javascript code.... I have Replaced<%@ Page language="C#" Inherits="Microsoft.SharePoint.Publishing.PublishingLayoutPage, Microsoft.SharePoint.Publishing,Version=12.0.0.0, Culture=neutral,PublicKeyToken=71e9bce111e9429c" metarogid="SharePoint.WebPartPage.Document" meta:webpartpageexpansion="full" %> with <%@ Page language="C#" Inherits="Microsoft.SharePoint.Publishing.TemplateRedirectionPage, Microsoft.SharePoint.Publishing, Version=12.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" metarogid="SharePoint.WebPartPage.Document" meta:webpartpageexpansion="full" %> this I am getting PageParser error...could you please let me know the solution... Its urgent.Thanks in advanceRahamath
Free Windows Admin Tool Kit Click here and download it now
February 19th, 2010 11:37am

Hello rahamath, Open your masterpage you will have the html tag "body" there you will have "onload="javascript:if (typeof(_spBodyOnLoadWrapper) != 'undefined') { _spBodyOnLoadWrapper(); removeOption(); }" on bold add the method then add the following method on javascript function removeOption() { if (document.getElementById("MSO_PageHashCode")) { document.getElementById("MSO_PageHashCode").value=""; } } Every time the page load the tag will be removed. Andr Lage Microsoft SharePoint, CRM and Sybase Consultant Blog:http://aaclage.blogspot.com Codeplex:http://spupload.codeplex.com/http://simplecamlsearch.codeplex.com/
March 5th, 2010 3:14pm

Thank you Andre, it's too much appreciated, i've been thru this problem, due to page layout detachment, and as you know if i re-attach the page to the page layout, i will lose any customizations made on the page, so i did exactly what you said, it worked fine. Thanks again
Free Windows Admin Tool Kit Click here and download it now
April 10th, 2010 5:01pm

Andre': Your solution worked. I appreciate it. Thanks.
June 14th, 2011 10:47am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics