Any real reason to use ASP.NET Mobile?

I put together a small web form for our technicians to use their phones in the field. However, I have a lot of problems working with ASP.NET Mobile, and it seems that there are few resources to help learn this material. I am also having trouble getting help .

So, do I really need to use mobile controls? The phones will have all web browsers, so I think that if I am careful with the interface, I can get good or better results than using mobile controls.

The only thing I would like to get from mobile controls is the PhoneCall control ... so the next question will be: can I get the functionality of the PhoneCall control without using it?

+3
source share
3 answers

Depends on which phones your customers will use. Not all phones support full and rich HTML created by classic ASP.NET controls. Mobile control tends to be simpler and more device-specific. Of course, restrictions on controls are limited, but this is due to restrictions on the end devices.

So, check if the classic ASP.NET pages work with your target device before making a mobile version.

+1

, - . Mobile Controls + Controls Adapters + WURFL .

, WTAI WML: <a ref="wtai://wp/mc;34123456789">Call</a>

0

You can always go to the page with those phone controls when necessary.

0
source

All Articles