If I understand the query, you need to know how to put quotation marks within a string, that is delimited by quotation marks?
Generally, you need to use an escape character in place of the quotation. I don'tknow about
VB, but in PERL, you would do:
$selectText = "<a href=\"link\">link</a>";
You also know the quotes in the tag are optional? <a href=link> will work too.
------------------
Paul M. Victorey
------------------
I am not responsible for any problems that may arise as a result of following my advice. This includes, but is not limited to, computer failure, loss of data, nuclear war, famine, boils, no clean laundry, your daughter running off with a biker gang, or armageddon. Take my advice at your own risk.