Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unable to pass query string to form

Status
Not open for further replies.

jmurrayhead

Programmer
Feb 13, 2004
47
0
0
US
I have a database results region I created using FrontPage. I selected one of the columns and clicked on the hyperlink button to set up parameters to send to a form on another page. On the form, I have the values of certain form elements set to for example,
<%=FP_FieldHTML(fp_rs,"UserName")%>

When going to the form page, I receive the following error:

Microsoft VBScript runtime error '800a000d'

Type mismatch: 'FP_FieldHTML'

/update.asp, line 37

Any ideas why I cannot pass parameters?

Thanks
 
if its coming from a hyperlink, use request.querystring("varName") to access the value from the link

then simply response.write it into the form
Code:
<input type="text" name="fname" value="<%=request.querystring("varName")%>">


Bastien

Cat, the other other white meat
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top