| View previous topic :: View next topic |
| Author |
Message |
kOt Contributor

Joined: 19 Jan 2004 Posts: 89 Location: Fyffe, AL
|
Posted: Tue Jun 20, 2006 3:40 pm Post subject: HTML HELP |
|
|
Im writing *attempting* a program that get USERNAME and a PASSWORD
from the user and then posts that to another html file
the form code below is what i use now.
but when using vds's browser dll when a user click on Create
it opens up create.html and that page says if the user was created or already taken.
How can i just get back if the account was created or not with out it opening create.html?
Also is there a way to send this data to "create.html" besides embedding the vds browser and using a html file to hold the form?
I would really like a way to do this without vds browser dll
| Code: |
<form method="post" action="http://DELETED/create.html">
<p><input type="hidden" name="action" value="create" /></p>
<p>Username: <input type="text" name="user" size="20" /></p>
<p>Password: <input type="password" name="pass" size="20" /></p>
<p>
<br>
<input name="I1" type="image" class="button" style="width: 110px; height: 21px;" tabindex="3" value="Create" src="http://DELETED/images/pixel.jpg" alt="Register" border="0">
</p>
</form>
|
_________________ Visual Dialogscript 5
Last edited by kOt on Mon Jun 26, 2006 8:49 pm; edited 1 time in total |
|
| Back to top |
|
 |
kOt Contributor

Joined: 19 Jan 2004 Posts: 89 Location: Fyffe, AL
|
Posted: Wed Jun 21, 2006 11:14 am Post subject: |
|
|
Ok answering my own question
to send this information to create.html
i had to use
| Code: |
<URL>/create.html?action=create&name=<NAME>&pass=<PASS>
|
_________________ Visual Dialogscript 5 |
|
| Back to top |
|
 |
|