These are the resolution for Mobile
Device | Screen res (height x width) |
---|---|
iPhone | 320 x 480 |
iPhone 4 | 320 x 480 (scaled by a factor of 2) |
Nokia N97 | 360 x 640 |
HTC Legend | 320 x 480 |
LG eXpo | 480 x 800 |
There are Tips for Designing Mobile websites.. resolution and capablities.
- http://labs.thesedays.com/blog/2010/07/16/10-tips-for-designing-mobile-websites/
- http://www.webpagefx.com/design-build-mobile-web-site.html
- http://www.smashingmagazine.com/guidelines-for-mobile-web-development/
I've Answer how to detect device and Redirect Page to Mobile
You need to understand.. UserAgent you can use this
Refference
Redirect Mobile Devices
<script type="text/javascript"> <!-- if (screen.width <= 699) { document.location = "mobile.html"; } //--> </script>
For iPhones/iPods Specifically
<script language=javascript> <!-- if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) { location.replace("http://url-to-send-them/iphone.html"); } --> </script>
Or u can use Page_LoadHttpBrowserCapabilities Version = Request.Browser; if ( Version.IsMobileDevice = true) { Response.Redirect("yourPage-forMobiles.aspx"); } e;se{ Response.Redirect("yourRealPage-For-PC-Users.aspx"); }
Good Luck`
3 comments:
Automation, Mobile Development, Web Development, Custom Software Development and Robot Applications
http://serfcompany.com/
We are leading exhibition stand designers and builders based in saudi-arabia. We are involved in designing the exhibition booth and marketing display stalls for running trade fairs, marketing campaigns, promotional events, presentations in various saudi-arabia trade fairs.
exhibition stand
We are leading exhibition stand designers and builders based in kuwait. We are involved in designing the exhibition booth and marketing display stalls for running trade fairs, marketing campaigns, promotional events, presentations in various kuwait trade fairs.
exhibition stand
Post a Comment