He did a great job outlining how to get the quick launch on the page. His solution requires that you have SharePoint Designer. I wanted to see if we could do this without Designer. for the average "information worker" they do not have Designer.
After reading Patrick's post it became simple that all that was needed was to delete a couple of lines in the webpart page. These lines to be exact:
<asp:Content ContentPlaceHolderId="PlaceHolderPageImage" runat="server"></asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"></asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderNavSpacer" runat="server"></asp:Content>
Well deleting lines only take Note Pad and the find function. So could we open the web part page in note pad. I went to the document library. I first looked to see what the default editor was for .aspx files, yep you guessed it, SharePoint Designer (strike one). So I then decided that I will change the extension so wen to edit the Properties and what I found is that SharePoint does NOT allow you to edit the extension of file like you can in windows explore (strike two). But wait that is the answer.
Open the document library in windows explorer and then change the extension to .txt, make your changes and then put the extension .aspx back. And we know we can open the library in windows explorer.
Go to the document library, click Actions and then click Open with Windows Explorer. Now you can:
- Change extension to .txt
- Edit in Note Pad
- Delete the following lines:
- <asp:Content ContentPlaceHolderId="PlaceHolderPageImage" runat="server"></asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"></asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderNavSpacer" runat="server"></asp:Content>
- Save the document
- Change the extension to .aspx
- Close Windows Explorer and open your update page with the quick launch.
Worked great.