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

  • SEARCH
  • Home
  • 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 8210723
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:10:14+00:00 2026-06-07T10:10:14+00:00

We have the folowing link: http://mvp.sos.state.ga.us/ Rather than create a db to replicate information

  • 0

We have the folowing link: http://mvp.sos.state.ga.us/

Rather than create a db to replicate information that MVP page, we would like to use our own form, and then behind the scenes, send information to the site above to get results back using component called MSXML2.ServerXMLHTTP.

Unfortunately, I know nothing about this component or how to use it.

Would someone be kind enough to please give me pointers on how use our own … to send information to the site above and get results back to our form?

We are basically trying to get users to enter first initial, lastname, county, date of birth.

Thanks

  • 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-06-07T10:10:17+00:00Added an answer on June 7, 2026 at 10:10 am

    You can use this component for http-requests like “POST”, “GET”, “DELETE” etc.

    To create the object:

    <%
        Set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP")
    %>
    

    To send data using method “GET”:

    <%
        objXML.Open "GET", "http://mvp.sos.state.ga.us/?some=querystring", false 
        objXML.Send ""
        Response.Write objXML.responseText
    %>
    

    Note that Open method has 3 parameters: HTTP method, URL, asynchronous call.

    Note that Send method on a “GET” ignores its parameter. (In this case we are passing parameters via the URL.)

    To send data using method “POST”:

    <%
        objXML.Open "POST", "http://mvp.sos.state.ga.us/", false 
        objXML.Send "username=htbasaran&password=somepassword"
        Response.Write objXML.responseText
    %>
    

    Note for “POST” that Send method passes parameters in key-value pairs format like: key1=value1&key2=value2&so=on… or any other data like XML, JSON, etc.)

    These are the basics of this component. If you need more information, you can check microsoft’s docs page out.

    An example code for getting form values and sending them using xmlhttp post method.

    <%
        ' getting form values
        my_uname = Request.Form("username")
        my_pword = Request.Form("password")
    
        ' creating object
        Set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP")
    
        ' sending variables to an external site
        objXML.Open "POST", "http://www.sitename.com/login.asp", false
        objXML.Send "username=" & my_uname & "&password=" & my_pword
    
        ' Assuming that successful login will return response "Ok"
        ' writing the result to the client.
        if objXML.responseText="Ok" then
            Response.Write "Login Successful!"
        else
            Response.Write "Login Failed!"
        end if
    %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Asp.net MVC 2 project. My start page has following link: http://localhost:2666/Home/Index?SomeID=4f62c452-4513-4dd0-b235-830d721815e4
I have come across the following link: http://code.google.com/p/a-star/source/browse/trunk/java/PathFinder.java?r=8 I have got the code working
I have created a listview using following tutorial link http://www.ezzylearning.com/tutorial.aspx?tid=1763429 Outcome of this is,
I have tried to do this refering to following link. http://skypher.com/index.php/2008/07/28/function-list-for-php/ But no success.
I have the following link on index page <td align=center><a href=../athena/admin/update.php?id=' . $data [keyword]
I have the following Web page: link to page . If you go to
I have the following link: http://www.europarl.europa.eu/sides/getDoc.do?type=REPORT&mode=XML&reference=A7-2010-0001&language=EN the reference part of the url has the
I am doing the walkthrough in the following link: http://msdn.microsoft.com/en-us/library/zt39148a%28VS.80%29.aspx I have followed it
Here's the link: http://www.iancreates.com/3dbikefit/ The divs .pod have the following CSS: .pod { background-color:
Simple quick question.... I have the following link html: <a href=http://www.site.com/ onmouseover= /> I

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.