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

HREF using path from Database

Status
Not open for further replies.

jasek78

Programmer
Nov 5, 2001
298
US

Hi!

I'm trying to use a "path" recorded in a database to reference links. Below are my set variable statemements, and what I tried for the HREF line. Can someone help me with this???

thanks!

jason


x_ProjectID = rs("ProjectID")
x_Name = rs("Name")
x_Updated = rs("Updated")
x_Status = rs("Status")
x_Overall = rs("Overall")
x_ProjectManager = rs("ProjectManager")
x_Path = rs("Path")
x_ProjectPage = &quot;<a href=&quot;/&quot; & x_Path & &quot;/&quot;&quot;>&quot; & x_Name & &quot;</a>&quot;&quot;


' I need the previous line to output like this:
'<a href=&quot;/x_Path/&quot;>x_Name</a>
 
need to add another &quot; (see in red):

x_ProjectPage = &quot;<a href=&quot;&quot;/&quot; & x_Path & &quot;/&quot;&quot;>&quot; & x_Name & &quot;</a>&quot;&quot;


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top