1
Answer

mobile version of website in sharepoint

Jhanani

Jhanani

16y
5.3k
1

Hi All,

         Theres one web site , our client wants to make a mobile view of that. So First i created Web application http://sathya:400/m it gave the mobile view. Then for the home page i changed the coding for title,navigation and content.

 

Title


<SharePoint:RenderingTemplate RunAt="Server" ID="Mobile_View_HomePage_Title">
 <Template>
  <mobile:Label Runat="server" text ="Knowatik View" Font-Bold ="true" Font-Size ="large" > </mobile:Label>
   </Template>
</SharePoint:RenderingTemplate>

 

Content

 

<SharePoint:RenderingTemplate RunAt="Server" ID="MobileHomePageContents">
  <Template>

<mobile:Image ImageUrl="C:\Images\Home_files\id_04.gif" Alignment="Left" Runat="server"></mobile:Image>
     </Termplate>

</<SharePoint:RenderingTemplate>

 

Navigation

<mobile:Link ID="Link1" text="ConatctUs"   Font-Bold="True" NavigateUrl="" Runat="server" BreakAfter="False" > </mobile:Link>
  <mobile:Link ID="Link2" text="Community"  Font-Bold="True" NavigateUrl="" Runat="server" > </mobile:Link>

I want to navigate to my own page contactus.aspx.I created it inside LAYOUTS/MOBILE but its not coming. I go for view.aspx?List=GUID&view=GUID but it gives error like:list view deleted by another user.

I want to create my own aspx and my all page should show the title and the navigation.Only the content change.

 

how to call my Contact.aspx page.. In the C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\MOBILE  having some .aspx files but i dont knw wats that.

 

 

Can anyone explain with a simple website having 3 aspx pages like contact,about us,Home with screen shot.

 

Main thing i want how to navigate to my own page(contactus.aspx) and how to call it from home page content

like <mobile:Link Id="Link1" Text="Google" RunAt="Server" NavigateUrl="contactus.aspx">

Please help

 

With regards,

Jhanani.R

Answers (1)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 14y

Where is the database? If it is in your local computer and the web site is not then will your local computer always be on and working?
 
Did you look in ASP.NET & Web Forms? Also look in here.
Accepted