Apr 15, 2005 #1 edgarv MIS Joined Jul 25, 2003 Messages 248 Location US hello, is there a way to enter a variable to the Mailto in html for example <a href="mailto:<% Response.Write "<td clas=Item>"& objRs ("Requested_by") &"</td>" %></a> I have no idea if this is correct or even close of being correct
hello, is there a way to enter a variable to the Mailto in html for example <a href="mailto:<% Response.Write "<td clas=Item>"& objRs ("Requested_by") &"</td>" %></a> I have no idea if this is correct or even close of being correct
Apr 15, 2005 1 #2 Sheco Programmer Joined Jan 3, 2005 Messages 5,457 Location US You have the right idea but the wrong order: <td clas=Item> <a href="mailto:<% Response.Write objRs("Requested_by")%>">Click to send mail</a> </td> The way you had it before was putting a <td></td> inside the anchor tag. Upvote 0 Downvote
You have the right idea but the wrong order: <td clas=Item> <a href="mailto:<% Response.Write objRs("Requested_by")%>">Click to send mail</a> </td> The way you had it before was putting a <td></td> inside the anchor tag.
Apr 15, 2005 Thread starter #3 edgarv MIS Joined Jul 25, 2003 Messages 248 Location US Thank you Shece, I was just about to answer my own question I tried it that way also and it worked. Thank you for all your great help Sheco Upvote 0 Downvote
Thank you Shece, I was just about to answer my own question I tried it that way also and it worked. Thank you for all your great help Sheco
Apr 15, 2005 #4 Sheco Programmer Joined Jan 3, 2005 Messages 5,457 Location US My pleasure, happy to help! Upvote 0 Downvote