Hyperlink ID

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a hyperlink set like this:(
/submission_form.asp?identity=<%=FP_FieldURL(fp_rs,"Key")%> )

Now once that link goes to the submission form, how do i transfer the
Identity number automatically into a text box?
 
On the form page do the following before the opening HTML tag:

<%
Dim Iden
Iden = Request.QueryString("Identity")
%>

Then in the initial value of the Form field

<%=Iden%>

or as a hidden form field

<input type="hidden" name="Identity" value="<%=Iden%>">
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top