Customized Page Layout with links
Hi, I need to create a page, where i have the following type of layout . Group 1 : Group 2: 1. Google 1. Google 2. Yahoo 2. Yahoo Group 3 : 1. Google 2. Yahoo Which webpart gives the freedom to create such a layout? Main thing is I need links also. Thanks & Regards, Srini
April 11th, 2010 10:45am

Can we do it in Sharepoint Designer atleast? Any help would be appreciated....Thanks & Regards, Srini
Free Windows Admin Tool Kit Click here and download it now
April 11th, 2010 3:49pm

Are you look for something like this (create a page in SharePoint designer from the default master page, and insert the section in bold into the custom content): <%@ Page masterpagefile="~masterurl/default.master" language="C#" title="Untitled 1" inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" meta:webpartpageexpansion="full" meta:progid="SharePoint.WebPartPage.Document" %> <%@ Register tagprefix="WebPartPages" namespace="Microsoft.SharePoint.WebPartPages" assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <asp:Content id="Content1" runat="server" contentplaceholderid="PlaceHolderMain"> <WebPartPages:SPProxyWebPartManager runat="server" id="ProxyWebPartManager"> </WebPartPages:SPProxyWebPartManager> <table style="width: 100%"> <tr> <td style="width: 50%"> <WebPartPages:WebPartZone id="g_148BE94F54E24A4B91D9F8835FDAEABC" runat="server" title="Zone 1"> </WebPartPages:WebPartZone></td> <td style="width: 50%"> <WebPartPages:WebPartZone id="g_ABB00938CE094D1DB9F94DF729E3EF0D" runat="server" title="Zone 2"> </WebPartPages:WebPartZone></td> </tr> </table> <table style="width: 100%"> <tr> <td> <WebPartPages:WebPartZone id="g_04BBE8FA3D6444608973CB7345C09530" runat="server" title="Zone 3"> </WebPartPages:WebPartZone></td> </tr> </table> </asp:Content>
April 21st, 2010 9:23am

Create a links list with category metadata which would be group 1, group 2, etc. Then populate this links list with links and assign them to the groups. Then create a page (web part page.) Add links web part to the page - 3 - that is 1 for each group. Apply filter for the groups.Blog: Alpesh Nakar's Blog | Twitter: Follow Alpesh on Twitter |SharePoint Resources: Just SharePoint Resource Center | Follow Just SharePoint updates on Twitter
Free Windows Admin Tool Kit Click here and download it now
April 21st, 2010 10:04am

Hello buddy, You can do this output on web part page by following the steps, add form content editor web part edit this web part click on source editor button delete previous content and add following code in source editor window <table > <tr> <td align="left"> <table > <tr> <td> Group1</td> </tr> <tr> <td class="style2"> &nbsp;1. Yahoo&nbsp;</td> </tr> <tr> <td> &nbsp;2. Google</td> </tr> </table> </td> <td align="right"> <table > <tr> <td> Group2</td> </tr> <tr> <td> &nbsp;1. Yahoo&nbsp;</td> </tr> <tr> <td>&nbsp;2. Google</td> </tr> </table> </td> </tr> <tr> <td colspan="2" align="center"> <table > <tr> <td> Group3</td> </tr> <tr> <td> &nbsp;1. Yahoo&nbsp;</td> </tr> <tr> <td>&nbsp;2. Google</td> </tr> </table> </td> </tr> </table> this will show you above expected output, and simply add HTML hyperlinks Hope this also helps you! Regards, N i T i N
April 21st, 2010 10:35am

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

Other recent topics Other recent topics