|
Good follow-up, mosquito. A bit easier to read than what I was going to reply with.
Art, the problem is that Request.QueryString("TicketNumber")is passed as a variant to the database. And the ticket number is stored as a number.
Try:
" WHERE Follow_up.TicketNumber = " & cint(Request.QueryString("TicketNumber"))
|