Is it possible in asp to just fill some textboxes on a website where you don't have access to... You don't need to use the server just put some values in some textboxes..
If this is possible, can someone tell me how?
tnx a lot
Printable View
Is it possible in asp to just fill some textboxes on a website where you don't have access to... You don't need to use the server just put some values in some textboxes..
If this is possible, can someone tell me how?
tnx a lot
Not unless the form on the server you are sending to can or is expecting values in the text fields to be populated by a request object.
Otherwise you could post to the same script that the form you want to send to uses....
Well, depending on how their forum is designed (if it is a simple one) you could emulate their form on your end by using asp to POST the form variables to the backend script (whatever that may be).
Note though, you will need a server component, something that can create and send http headers, like AspTear ( i think its called ).