PocketPC and TabletPC

F

Fredrik Ljungbeck

Hi !

We are planning to update part of an application so you can run it from
a PocketPC (wireless connected).
Today the application is developed in traditional ASP for IE 6.0.

What are the major differences (adv/disadv.) between using ASP.Net Mobile
or an installed client with compact framework.

(The app should also run on TabletPC but as I understand it does alread with
IE 6.0)

Regards,
Fredrik
 
R

Ronald Armas

Hi, here you have an approach:

Client Application (Using .Net Compact Framework)

Pros:
-Application on device
-Device specific
-Offline options
-Richest UI

Cons:
-Fewer devices target

Application on server(using mobile Controls)

Pros
-Runs in browser
-Many devices
-Easy to deploy

Cons
-Online only
-Less UI choice


best regards
Ronald Armas
MCSD
 
G

George Birbilis

We are planning to update part of an application so you can run it from
a PocketPC (wireless connected).
Today the application is developed in traditional ASP for IE 6.0.

What are the major differences (adv/disadv.) between using ASP.Net Mobile
or an installed client with compact framework.

(The app should also run on TabletPC but as I understand it does alread with
IE 6.0)

shouldn't need Mobile controls, TabletPC is built over the WinXP OS

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
George Birbilis <[email protected]>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ QuickTime VCL and ActiveX controls (for PowerPoint/VB/Delphi etc.)
+ Plugs VCL and ActiveX controls (InterProcess/Internet communication)
+ TransFormations, VB6 forms to ASP.net WebForms convertion
http://www.kagi.com/birbilis
+ Robotics
http://www.mech.upatras.gr/~robgroup
.........................................................................
 
T

Thom Robbins

There are a variety of difference between the two. First it is
important to remember that with the Compact Frameworks you are running
on the local device. This means that you can take the app offline.
With ASP.NET you have to be connected. It really depends on what your
app needs.

With the app in the compact framework you have access to the local
device and then can post back when it is convenient. With ASP.NET you
are posting to the server. No connection - no app.

Mobile controls may help as a way of rendering for the form factor. Or
if for example you want to push to other device types.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top