Link to home
Start Free TrialLog in
Avatar of Murray Brown
Murray BrownFlag for United Kingdom of Great Britain and Northern Ireland

asked on

ASP.net VB.net hyperlink where value can be added

Hi.  I am using the following hyperlink in the html of an email. I now want to include a text box
 in the email body too. I want the user to enter a value in the text box so that when my hyperlink is clicked it uses the value in the text box


  Dim oLinkAccept As String = "http://xxxx.azurewebsites.net/offers_to_me?oOfferID=" & oNewOfferID & "&oOfferAcceptDecline=Accept"

       oHBody = oHBody & "<a href=" & oLinkAccept & ">ACCEPT</a>"
ASKER CERTIFIED SOLUTION
Avatar of Kimputer
Kimputer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Murray Brown

ASKER

Thanks makes sense