Applicaton on Handhelp using ASP.NET

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Applicaton on Handhelp using ASP.NET

    Hi All,
    We are developing a web based application using ASP.NET
    and C#. Now we have got a requirement in which one of our
    existing screen needs to be function on one hand held
    device which is on Windows CE platform.

    (1) Can our existing screen be views from windows CE
    based device (assuming screen is small enough to fit in
    monitor of device?

    (2) If not (in 1), then how do we design screen for
    windows CE?

    (3) Can we re-use our business class/data class as it is?
    if yes, how it will be called from new screen, which we
    design for windows CE?

    Any pointers on this will be helpful.

    Regards,
    Ashish

    Ashish Gupta Guest

  2. #2

    Default Re: Applicaton on Handhelp using ASP.NET

    Hi Ashish
    > (1) Can our existing screen be views from windows CE
    > based device (assuming screen is small enough to fit in
    > monitor of device?
    Well, it depends on how your existing "screen" is designed. If it features
    large graphics, for example, then it probably wouldn't be suitable for use
    on a small-screen device and as such would be re-designed. If however the
    device you're targeting can "read" plain HTML (as opposed to just WML pages)
    and your page's layout is workable given the screen dimensions of the
    device, then you shouldn't need to change the page. As I recall Windows CE
    can indeed display HTML pages, although I'm not sure if all the HTML
    features are available.
    > (2) If not (in 1), then how do we design screen for
    > windows CE?
    It would probably be advisable to view your page either on a Pocket PC-type
    device running Windows CE, or on a software emulator. If you need to
    re-design a page for mobile-only use, I recommend using the ASP.NET mobile
    controls which also support numerous cellphone browsers, so should the
    requirements extend beyond just supporting handhelds in the future, you
    won't have to change your page again.
    > (3) Can we re-use our business class/data class as it is?
    > if yes, how it will be called from new screen, which we
    > design for windows CE?
    You should be able to use your original business classes. Building a mobile
    ASP.NET page with Mobile ASP.NET controls is almost identical to building a
    regular ASP.NET page.

    Peter


    Peter McMahon [MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139