href problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • AliHabib
    New Member
    • Dec 2008
    • 11

    href problem

    Code:
    Response.Write "<TD><A HREF=""ViewTicketDetails.asp?TicketID="&rsPRJ.fields("TCKT_ID") & """<" & rsPRJ.fields("TCKT_ID") &"</A></TD>"
    this line I use to make the column return from the database in link form but it display nothing any one have idea
  • CroCrew
    Recognized Expert Contributor
    • Jan 2008
    • 564

    #2
    Hello AliHabib,

    Try this fix.

    Code:
    Response.Write("<td><a href='ViewTicketDetails.asp?TicketID=" & rsPRJ.fields("TCKT_ID") & "'>" & rsPRJ.fields("TCKT_ID") &"</a></td>"
    Hope this helps,
    CroCrew~

    Comment

    Working...