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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Type Mismatch

Status
Not open for further replies.

mgifford

Programmer
Jun 3, 2004
30
US
I am trying to pass information to a new page that will be printer friendly and am getting a type mismatch. Here's what I have:

<a href='printobs.asp?mode=edit&key=" & (rsPRObs("Key")) & "'>

I want to be able to display all the fields in a more condensed version. What am I doing wrong?
 
It could be a failure converting rsPRObs("Key") to a string but it is more likely a problem with the quotes.

x = [red]"[/red]<a href='printobs.asp?mode=edit&key=" & cStr(rsPRObs("Key")) & "'>[red]"[/red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top