Things to keep in mind while creating a ASP.NET Mobile Web Application - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T02:30:30Zhttp://stackoverflow.com/feeds/question/298718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/298718/things-to-keep-in-mind-while-creating-a-asp-net-mobile-web-application4Things to keep in mind while creating a ASP.NET Mobile Web ApplicationRamesh Soni2008-11-18T13:30:54Z2008-11-19T13:08:43Z
<p>I am creating a mobile web application using asp.net. The application must support iPhone, Blackberry and Windows Mobile Platform. What are the low things which should be taken care of while developing this application. Is there any best practices list available for this?</p>
<p><strong>Summary:</strong> </p>
http://stackoverflow.com/questions/298718/things-to-keep-in-mind-while-creating-a-asp-net-mobile-web-application/298963#2989631Answer by Israr Khan for Things to keep in mind while creating a ASP.NET Mobile Web ApplicationIsrar Khan2008-11-18T14:59:09Z2008-11-18T14:59:09Z<p>Can you add some more info? If you are developing a application for all those platforms, I would guess you are creating either some sort of web-services or just a "standard" web-application? </p>
<p>If it's just a standard web-application, I think it's a bit hard to ensure a good compatibility due to the fact that javascript, which is widely used in webapplications isn't always implemented in browsers for mobile phones.... Yes, if you have Opera, and not Pocket Internet Explorer, it get's a bit better. When it comes to Blackberry I'm not quite sure how well the browser performs. </p>
<p>Iphone on the other hand is probably "easy" to develop for, since it's default browser is probably good at javascript - just as Opera mini. </p>
<p>Also - Other graphical issues due to the fact that many Windows Mobile devices have a reather low resolution should also be taken in consideration, but this is eventually getting better with the new devices beeing released :) (As Touch HD, Omnia, Diamond etc)</p>
http://stackoverflow.com/questions/298718/things-to-keep-in-mind-while-creating-a-asp-net-mobile-web-application/301052#3010520Answer by Programmer for Things to keep in mind while creating a ASP.NET Mobile Web ApplicationProgrammer2008-11-19T05:15:42Z2008-11-19T05:15:42Z<p>Use <a href="http://msdn.microsoft.com/en-us/library/system.web.mobile.aspx" rel="nofollow">System.Web.Mobile</a> Namespace</p>
http://stackoverflow.com/questions/298718/things-to-keep-in-mind-while-creating-a-asp-net-mobile-web-application/301837#3018371Answer by fravelgue for Things to keep in mind while creating a ASP.NET Mobile Web Applicationfravelgue2008-11-19T13:08:43Z2008-11-19T13:08:43Z<p>I think you should check that asp.net is rendering xHtml Mobile. Mobile device detect is very old and it doesn´t dectect some device correctly. You should change it for other (like WURFL).</p>
<p>And general mobile web development.</p>
<ul>
<li><a href="http://www.w3.org/TR/mobile-bp/" rel="nofollow">w3c Mobile Web Best Practices</a></li>
<li><a href="http://mobiforge.com/starting/story/dotmobi-mobile-web-developers-guide" rel="nofollow">dotmobi Mobile Web Developer´s Guide</a></li>
</ul>