PDA

View Full Version : Help with submitting form


whodatis
01-10-2009, 11:26 PM
I need to figure this out:

<form action=add_20.adp method=post>

<hr noshade>



<br/>
Username<br/>
<input type=text name=un><br/>
Password<br/>
<input type=password name=password><br/><br/>


<input type="submit" name=submit value="Save"><a href="main.adp">Cancel</a><br/>



</form>

<script language="JavaScript"> document.forms[0].username.focus(); </script>



What i need to do is figure out how its posting the information. Like an actual URL behind the scenes, please any help would be great.

bazz
01-11-2009, 04:06 AM
well, it's sending to a script called add_20.adp

I am not familiar with that file extension but maybe you meant asp? if so, that script likely, processes whatever was sent to it.

it should be more like this


<form action='add_20.adp' method='post' >


It looks like you got that from somewhere very out-dated. it is pretty much all crappy code. better to use tutorials like tizag.com

hth

bazz

website_seo
01-11-2009, 03:56 PM
I am not sure about the coding. However, I have never heard of adp extension.

I would request you to post the exact code here. It will help us in identifying any Programming issues related to your website's submission form. :o

whodatis
01-13-2009, 06:05 AM
Its not my own post code. Its off a pretty hard to find webpage (AOL) What im trying to do is find out how link.adp is getting the info from the inputbox's. Like i want to be able to send multiple infos from multiple different browser windows in a visual basic program. If im unclear, please ask for further information.

jerry62704
01-13-2009, 04:58 PM
Are you asking how to read "post" data in a visual basic script?

whodatis
01-14-2009, 08:20 AM
im asking how to post in vb.