Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4614978
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:46:30+00:00 2026-05-22T01:46:30+00:00

What i am trying to do is basically run a script and post data

  • 0

What i am trying to do is basically run a script and post data to a page but the page is not on the server. So i dont want to run a redirect, just run a webpage in the back when the user clicks on a button?

I have tried…

    set httpRequest = CreateObject("WinHttp.WinHttprequest.5.1")
Dim var1

var1 = Request("username")

on error resume next
httpRequest.Open "POST", "http://www.example.com", True
httpRequest.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
httpRequest.send var1
set httpRequest = nothing

But this doesnt seem to work. So i want to built the url http://www.example.com?username and run it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T01:46:31+00:00Added an answer on May 22, 2026 at 1:46 am

    The easiest way is to include a reference to the jQuery script libraries and use
    .ajax

    http://api.jquery.com/jQuery.ajax/

    a call is simply:

    <html>
     <head>
     <script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" ></script>
     </head>
    <body>
    bip
    <div id="result"> results to get replaced here</div>
    <div id="msg" style="color:Red">any errors will show here</div>
    <input type="button" value="click me" id="loadButton" />
    
    <script language="javascript" type="text/javascript">
    
            //ensure jQuery is loaded before calling script
        $(document).ready(function () {
            alert('ready');
            $('#loadButton').click(function () {
                alert('Handler for .click() called.');
                $.ajax({
                    url: 'yoursite/yourpage',
                    error: function (xhr, ajaxOptions, thrownError) {
                        alert('doh an error occured. look at the error div above : )');
                        $('#msg').html(xhr.status + ' ' + thrownError); ;
                    },
                    data: "{'someparam':'someparamvalue','someparam2':'someparamvalue2'}",
                    success: function (data) {
                        $('#result').html(data);
                        alert('Load was performed.');
    
                    }
                });
            });
        });
    
    </script>
    
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a Textmate snippet, but have run into some difficulties. Basically,
I'm basically trying to teach myself how to code and I want to follow
Basically I am trying to restart a service from a php web page. Here
I've got a problem with my shell script. I am basically trying to create
I'm trying to write a script which basically takes an array of lots of
I am trying to implement a php script which will run on every call
I'm basically trying to figure out the simplest way to perform your basic insert
I'm trying to basically do a search through the database with Perl to tell
Im trying do this basically: var tr = document.createElement(tr); var td = document.createElement(td); td.appendChild(document.createTextNode('<input
I recently came across this in some code - basically someone trying to create

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.