How to redirect mobile page between mobile phones and Pocket PChttp://forums.asp.net/t/592175.aspx/1?How+to+redirect+mobile+page+between+mobile+phones+and+Pocket+PCMon, 03 Dec 2007 07:36:33 -0500592175592175http://forums.asp.net/p/592175/592175.aspx/1?How+to+redirect+mobile+page+between+mobile+phones+and+Pocket+PCHow to redirect mobile page between mobile phones and Pocket PC Please help, can i redirect different mobile page to pocket pc?? coz some of the old mobile phones cannot support the mobile control checkbox. i want to redirect the page to Pocket PC which can support it. Many thanx. 2004-06-02T17:08:00-04:00592873http://forums.asp.net/p/592175/592873.aspx/1?Re+How+to+redirect+mobile+page+between+mobile+phones+and+Pocket+PCRe: How to redirect mobile page between mobile phones and Pocket PC Hi, Your question is not clear can u elobrate it further.. 2004-06-03T09:46:28-04:00598493http://forums.asp.net/p/592175/598493.aspx/1?Re+How+to+redirect+mobile+page+between+mobile+phones+and+Pocket+PCRe: How to redirect mobile page between mobile phones and Pocket PC Actually, my question is how to redirect different mobile web page according to different mobile devices when user browse my mobile web site. E.g. if i goto url http://www.mymobilesite.com using PocketPC, it will redirect to http://www.mymobile.com/pocketpc/ using normal phone.E.g. motorola T720 hand phone , it will redirect to http://www.mymobile.com/motorola/ What is the device specific for conventional mobile phone and PocketPC or PDA?? 2004-06-09T10:59:56-04:00598506http://forums.asp.net/p/592175/598506.aspx/1?Re+How+to+redirect+mobile+page+between+mobile+phones+and+Pocket+PCRe: How to redirect mobile page between mobile phones and Pocket PC Hi, U need to check the Client Information from Request.Browser.Platform and redirectly accordingly. 2004-06-09T11:21:11-04:002037488http://forums.asp.net/p/592175/2037488.aspx/1?Re+How+to+redirect+mobile+page+between+mobile+phones+and+Pocket+PCRe: How to redirect mobile page between mobile phones and Pocket PC <p>hi</p> <p>u can use these codes to redirect a page to an ASP.NET Mobile Web Page .</p> <p>http://msdn2.microsoft.com/en-us/library/fhhycabe.aspx<br> <br> <br> There are some problems here.<br> <br> &lt;script runat=&quot;server&quot; language=&quot;c#&quot;&gt;<br> &nbsp;&nbsp;&nbsp; public void Page_Load(Object sender, EventArgs e) <br> &nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (Request.Browser[&quot;IsMobileDevice&quot;] == &quot;true&quot; ) <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Response.Redirect(&quot;MobileDefault.aspx&quot;);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Response.Redirect(&quot;DesktopDefault.aspx&quot;);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; }<br> &lt;/script&gt;<br> <br> &lt;configuration&gt;<br> &nbsp; &lt;system.web&gt;<br> &nbsp;&nbsp;&nbsp; &lt;httpRuntime useFullyQualifiedRedirectUrl = &quot;true&quot; /&gt;<br> &nbsp; &lt;/system.web&gt;<br> &lt;/configuration&gt;<br> <br> response.redirect code doesn't work at this code.<br> To solve this problem u must delete &quot;&lt;httpRuntime useFullyQualifiedRedirectUrl = &quot;true&quot; /&gt;&quot; this code from web.config file.<br> if u add this , it doesn't work.<br> (I know that Microsoft says add this code to web.config file.But if u add this,there is a problem with redirecting.)<br> <br> And the second problem;<br> This code doesn't work at some of the mobile phones.<br> <br> So u have to change the <br> (<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;identification&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;capability name=&quot;majorversion&quot; match=&quot;^[5-9]&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/identification&gt;<br> )<br> majorversion in the file.</p> <p>change&nbsp; 5-9 to 4-9</p> <p>&lt;capability name=&quot;majorversion&quot; match=&quot;^[4-9]&quot; /&gt; <br> </p> <p><br> U can find the file to change in &quot;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG&quot;<br> this path.<br> <br> Umit<br> </p> 2007-12-03T07:33:20-05:002037490http://forums.asp.net/p/592175/2037490.aspx/1?Re+How+to+redirect+mobile+page+between+mobile+phones+and+Pocket+PCRe: How to redirect mobile page between mobile phones and Pocket PC <p>there are some examples about this subject.</p> <p>http://www.pluralsight.com/blogs/jimw/archive/2007/10/22/48823.aspx</p> <p>http://msdn2.microsoft.com/en-us/library/fhhycabe.aspx<br> </p> 2007-12-03T07:36:33-05:00