ASP on PIE & Pocket PC

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default ASP on PIE & Pocket PC

    I read an article that you need to load winsock in eVB to run ASP on a PPC.
    > > Code Walkthrough
    > > The first thing you need to publish a Web Service is a Web server. You
    > > probably know that there is no Web server in a Pocket PC, and
    > > therefore we need to create one first. You can do that by using the
    > > Winsock control in eMbedded Visual Basic. If you add one to a form and
    > > name it wsoServer, you can use the following code to activate it on
    > > port 80, the port used for HTTP (Hypertext Transfer Protocol):
    > > Private Sub Form_Load()
    > > wsoServer.LocalPort = 80
    > > wsoServer.Listen
    > > End Sub
    My question is how do you link the eVB project with ASP???

    Cheers
    Clive
    clivegisworkuk@yahoo.co.uk Guest

  2. Similar Questions and Discussions

    1. Pocket PC
      Is it possible to install WSE 2.0 on a pocket PC? I need a way to authenticate a pocket PC calling a webservice.
    2. Pocket PC, Flash and asp
      Hi, I have a series of 8 asp pages that transfer data from our server to a Pocket PC, at present the pages are viewd in a web browser on the...
    3. Pocket pc (PDA)
      Greetings! I have made a 3d museum in director mx 2004. I really need it to work on a PDA (pocket pc). Is there anything that i can do to achieve...
    4. Really need help : Pocket PC Asp.net
      Hello everybody I'm using the MS .Net framework to create a mobile web application. On a Asp.net mobile web form (...so for pocket PC for...
    5. Pocket PC 2003
      Sharp Software makes an Xtra for the PPC 2002 that exports lingo which can then be used to export from eMbedded Visual C++....
  3. #2

    Default Re: ASP on PIE & Pocket PC

    What does this have to do with databases? Please stop starting new threads
    every couple of hours. You have at least two threads already going over in
    asp.general, with multiple responses, some of them qith requests for more
    information, which you haven't bothered supplying. People are trying to
    help you but you don't seem to be very accommodating.

    --
    Aaron Bertrand
    SQL Server MVP
    [url]http://www.aspfaq.com/[/url]




    <clivegisworkuk@yahoo.co.uk> wrote in message
    news:4124b3f3.0312150844.5b393b0e@posting.google.c om...
    > I read an article that you need to load winsock in eVB to run ASP on a
    PPC.
    >
    > > > Code Walkthrough
    > > > The first thing you need to publish a Web Service is a Web server. You
    > > > probably know that there is no Web server in a Pocket PC, and
    > > > therefore we need to create one first. You can do that by using the
    > > > Winsock control in eMbedded Visual Basic. If you add one to a form and
    > > > name it wsoServer, you can use the following code to activate it on
    > > > port 80, the port used for HTTP (Hypertext Transfer Protocol):
    > > > Private Sub Form_Load()
    > > > wsoServer.LocalPort = 80
    > > > wsoServer.Listen
    > > > End Sub
    >
    > My question is how do you link the eVB project with ASP???
    >
    > Cheers
    > Clive

    Aaron Bertrand - 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