Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is it possible to send a forms data to another server?

Status
Not open for further replies.

mikecoal

Programmer
Nov 7, 2001
8
US
Is it possible to send the contents of a form(multiple textboxes) to another server? i have it setup to submit to my sql server but i also want it to send the data to another source? Im looking for any means other than email to do this when the submit button is clicked.
 
Why not? But maybe you can state down clearly what you want to do actually 'coz have many way to do it. ------------------
Freedom is a Right
 
Thank you for the responce

What i want to do is have the data that has been entered into several text fields go to two places when the submit button it clicked. the first being the sql database(wich i already have working when submit is clicked). The second being another server.
if i can string the data to this second server via asp, this would be perfect since the second server has an active asp waiting to capture.I dont know how to do this though!

if not then i am open to any other suggestions excluding email and odbc.
Thanks again
Mike
 
What you can do is, store the value in the session, after updating first sql server, use response.redirect to another server. ------------------
Freedom is a Right
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top