| View previous topic :: View next topic |
| Author |
Message |
Knoxville Newbie

Joined: 22 Jun 2002 Posts: 2
|
Posted: Sat Jun 22, 2002 6:53 pm Post subject: Web Forms |
|
|
Any idea how u can take control of webforms ?
So do you know programs like Roboform oder Gator ?
Is this possible with VDS, too ? |
|
| Back to top |
|
 |
LiquidCode Moderator Team
Joined: 05 Dec 2000 Posts: 1753 Location: Space and Time
|
Posted: Sat Jun 22, 2002 9:25 pm Post subject: |
|
|
I thought of making a program like that. It MAY be possible,
but it would be very complex. I have made a program that you
can populate a list with user info (Name, address, pw ect.) and
click and drag to the edit box on the form you want to fill. That is
not hard to do at all. You are new, so, I don't know how much
you know about VDS or programming. If you do want to make a
form filler, you can start by looking at the DLL's available on
VDSWorld. I think there is a dll that will allow you to DL a webpage
to the HD. You can try that and have your program look at
the code to find where the edit boxes are on the form and
go from there. Got it? I hope that helped. Anthing else, just ask.
Take Care!  _________________ Chris
Http://theblindhouse.com |
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Sun Jun 23, 2002 12:02 pm Post subject: |
|
|
What do you mean with 'take control of webforms'???
If you mean sending forms take a look at this:
<form action="http://www.server.com/post.php" method="post">
<input type="text" name="name" value="myname">
<input type="text" name="email" value="my@email.com">
<input type="button" name="Send"
</form>
if you know open a webbrowser with the url:
http://www.server.com/post.php?name=myname&email=myemail
The fom data will be sended! |
|
| Back to top |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2149 Location: A House
|
Posted: Sun Jun 23, 2002 5:24 pm Post subject: |
|
|
No, they mean form fillers. Where a form on a web page can be automatically filled out via another program that has stored information already for most situations on a web form.
Such information as Name, Email Address etc....
-Garrett |
|
| Back to top |
|
 |
Knoxville Newbie

Joined: 22 Jun 2002 Posts: 2
|
Posted: Mon Jun 24, 2002 9:32 pm Post subject: |
|
|
Thanks alot Liquid  |
|
| Back to top |
|
 |
|