Ask a Question related to ASP.NET General, Design and Development.
-
Craig Deelsnyder #1
Re: pda with standard web application
You can use the same pages, assuming they fit the screen. One thing you'll
run into is that the default way viewstate is stored will not work. The
viewstate in normal ASP.NET is too large of a string for the hidden field
used in the page. Pocket IE will choke on it. Search aspalliance.com for
Paul Wilson's articles. He wrote one on how to alter where viewstate is
stored; you could store it to session, although if you allow the user to hit
the back button, this may not be ideal, as only one previous viewstate is
available (whereas normally it's in the page).
This is the main limitation. MMIT was built to deal with this and other
limitations, and hence is the preferred way of doing this. But you'll
notice it doesn't have a DataGrid, e.g. (last time I worked with it), but
you can in fact use one if you override the viewstate problem and use a
normal ASP.NET datagrid.
If you've really abstracted your pages correctly, you should be able to
maintain two sets of pages with minimal overhead. I must warn you though,
PocketIE has other bugs with tabbing/focus, etc. that are somewhat painful
to deal with, depending on how picky your users are.
--
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET
"jeff" <vader1000x@yahoo.com> wrote in message
news:O5Cw%23Zz3CHA.2472@TK2MSFTNGP11.phx.gbl...the> I have a .net web application (aspx) written in vb.net language. all ofwhenever> controls are server-side and all the code is server-side. the pages work
> great on any pc. i want to know if this can be used on a PDA? using a
> pocket PC 2002 PDA, the page initially comes up just fine, howeverthe> we click any button or perform any interaction, there are errors reported.
> is it possible to make it work on the PDA in the current format?
>
> if it is not possible to do it this way, what is required to port it tostandard> mobile web pages? is it typically a simple transition? if i were to do
> this, i would still need to keep the primary web sites available as> web pages. does this become a maintenance nightmare (ie, having to always
> make changes twice for PDA and standard web pages)?
>
> any help would be greatly appreciated.
>
> jeff
>
>
Craig Deelsnyder Guest
-
dllimport call in aspnet application makes the application hangs
As our application design requires us to use one of the validation API engine which was written on C(so basically all I have is a dll) and I tested... -
[PHP-DEV] [PHP-CVS] cvs: php-src / NEWS /ext/standard parsedate.y /ext/standard/tests/time
Derick Rethans wrote: bison -y /usr/src/php/php5/ext/standard/parsedate.y conflicts: 17 shift/reduce... -
What issue will HIT me hard when I convert an Access 2002 MDE application to Web Application?
Hi All, Current Access 2002 MDE application: - has no tier - has neither business object nor any kind of object (Except MS Form object and... -
Can a web application call methods on a webservice running in the same application
Can a web application call methods on a webservice running in the same application Thanks Ron Vecchi -
How to inherit a base form in all application forms of an asp.net application
hello friend, while developing an asp.net application, i created a base form(say mybaseform1) with certain links on it. then i tried to...



Reply With Quote

