Posts

Showing posts from August, 2010

PopEndTag was called without a corresponding PushEndTag

I came across this error when overriding the menu class to make SharePoint navigation CSSFriendly. CSSFriendly control adapters from CodePlex are not an option, since control adapters change all navigation controls (horizontal and vertical) for all SharePoint sites and admin zones throughout the given application pool. public class MossMenu:System.Web.UI.WebControls.Menu Method to override: - RenderBeginTag - RenderContens - RenderEndTag After all errors removed and deploying solution, I get: "PopEndTag was called without a corresponding PushEndTag" Solution: The solution is to add the render method so it mentions all methods: protected override void Render(HtmlTextWriter writer) {   if (this.Page != null)   {     this.Page.VerifyRenderingInServerForm(this);   }   if (this.Items.Count > 0)   {     this.RenderBeginTag(writer);     this.RenderContents(writer);    ...

Windows Live Message encountered error

Windows Live Messenger shutdown when trying to open with error "Windows Live Messager has encountered an error and needs to close" Tried: - Full Live uninstall / reinstall - Uninstall with registry sweeps and file erases for Messenger stuff stats: live messenger wldcore.dll 0xc0000005 Working solution: - Go to HKCU\Software\Microsoft\MSNMessenger\PerpasswordSettings and remove all folders (MSN IDs), except folder "0". Might wanna backup first ;-) http://www.winvistatips.com/windows-live-messenger-has-stopped-working-t580755.html