newbie - Automaticaly Posting

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

  1. #1

    Default newbie - Automaticaly Posting

    I want to take the post data from a form, validate it etc and then post it
    out to another page.(on a different site)

    Is there a way in vbscript to post a form automatically

    i.e.
    user completes form & submits via post
    Process data & validate
    Post data to 3rd party page

    Thanks in advance

    J


    monki Guest

  2. Similar Questions and Discussions

    1. not posting
      can someone elaborate on why this code is not working: #! Perl\bin\perl -w use strict; $|++; use WWW::Mechanize; my $mech =...
    2. Prevent tag properties automaticaly generated by ASP.NET
      When I use System.Web.UI.WebControls.Image, ASP.NET automaticaly outputs : <img border="0" /> Is there a way to prevent this border="0" to be...
    3. XML posting
      I wan't to send a string containing XML to a Microsoft XML gateway. I'm using the include code below as an include and calling the function with...
    4. Re Posting this Pls Help
      I have reposted this in the hope some one can help. If it has been covered before I apologise but I cannot find an answer to this problem. I...
  3. #2

    Default Re: newbie - Automaticaly Posting

    monki wrote on 20 jun 2004 in microsoft.public.inetserver.asp.db:
    > I want to take the post data from a form, validate it etc and then
    > post it out to another page.(on a different site)
    >
    > Is there a way in vbscript to post a form automatically
    >
    > i.e.
    > user completes form & submits via post
    > Process data & validate
    > Post data to 3rd party page
    This is not database related, so off topic here on
    microsoft.public.inetserver.asp.db.

    Do you mean that the ASP-server and not the browser should post the data to
    another server?

    If so please ask in: <microsoft.public.inetserver.asp.general>

    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)
    Evertjan. Guest

  4. #3

    Default Re: newbie - Automaticaly Posting

    Well after you post the page to itself and validate the data you can
    have ASP code create the form tag accordingly (i.e. WHERE the form will
    be posted to). And toward the end of the form have some JavaScript:

    Response.Write "<script
    type='text/javascript'>document.myform.submit();</script>"

    Best regards,
    J. Paul Schmidt, Freelance ASP Web Designer
    [url]http://www.Bullschmidt.com[/url]
    ASP Designer Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...


    *** Sent via Devdex [url]http://www.devdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Bullschmidt 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