LittleSmudge
Programmer
I'm a Db developer just getting into web front ends - so bear with me.
I have a series of .asp pages and I'm using
<FORM Method="Post">
to transfer data from one page to another
The following works okay
However, it displays as text followed by a button.
I'd like to make the text active, like using
<A HREF= .. .. etc
and get rid of the button.
But I can't seem to get the Method="Post" part to transfer the data to the next form.
Is this an HTML question or should I be on the ASP board ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.
I have a series of .asp pages and I'm using
<FORM Method="Post">
to transfer data from one page to another
The following works okay
Code:
<TD ALIGN=CENTER BGCOLOR="#800000">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=2>View Current Jobs
</FONT>
</TD>
<TD>
<FORM NAME="request" Action="ViewJobs.asp" method="POST">
<INPUT TYPE="hidden" NAME="JobType" VALUE="Current">
<INPUT TYPE="hidden" NAME="ClientId" VALUE=<% Response.Write(ClientRef) %> >
<INPUT TYPE="hidden" NAME="UserId" VALUE=<% Response.Write(UserId) %> >
<INPUT TYPE="hidden" NAME="Authorise" VALUE=<% Response.Write(Authorise) %> >
<INPUT TYPE="submit" value="Go">
</FORM>
</TD>
However, it displays as text followed by a button.
I'd like to make the text active, like using
<A HREF= .. .. etc
and get rid of the button.
But I can't seem to get the Method="Post" part to transfer the data to the next form.
Is this an HTML question or should I be on the ASP board ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.