Apr 15, 2005 #1 edgarv MIS Jul 25, 2003 248 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 Jan 3, 2005 5,457 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 Jul 25, 2003 248 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