gorden
04-01-2005, 12:17 PM
I think the problem is merely syntactical and I've tried just about everything...
Here's the relevant part of the code:
(I'm building an HTML string to be built and sent as a CDOSYS email...
<% ' Submitter email
strAddress = TRIM(Request.Form("bnlauthem"))
strHTML = "<font face='Verdana' size='2'>A publication for Primary Author: xxxx has been assigned: <br><br>Publication Number: <font color='#800080'><b>" & v_publication_num_pr & "</b></font> and Accession Number: <font color='#800080'><b>" & v_accession_num & "</b></font><br><br><br><a href='http://xxx.xxx.xxx/isd/pubs/BC_meta.asp?pubnum=&v_publication_num_pr '</a>Metadata<br> "
SendMail strAddress, "Publication Submission", strHTML
Everythings a-ok except instead of the value of the variable v_publication_num_pr in the URL, the constant &v_publication_num_pr appears after ?pubnum:
http://xxx.xxx.xxx/isd/pubs/BC_meta.asp?pubnum=&v_publication_num_pr
How can I get the value passed to the URL?
Seems simple but...
Here's the relevant part of the code:
(I'm building an HTML string to be built and sent as a CDOSYS email...
<% ' Submitter email
strAddress = TRIM(Request.Form("bnlauthem"))
strHTML = "<font face='Verdana' size='2'>A publication for Primary Author: xxxx has been assigned: <br><br>Publication Number: <font color='#800080'><b>" & v_publication_num_pr & "</b></font> and Accession Number: <font color='#800080'><b>" & v_accession_num & "</b></font><br><br><br><a href='http://xxx.xxx.xxx/isd/pubs/BC_meta.asp?pubnum=&v_publication_num_pr '</a>Metadata<br> "
SendMail strAddress, "Publication Submission", strHTML
Everythings a-ok except instead of the value of the variable v_publication_num_pr in the URL, the constant &v_publication_num_pr appears after ?pubnum:
http://xxx.xxx.xxx/isd/pubs/BC_meta.asp?pubnum=&v_publication_num_pr
How can I get the value passed to the URL?
Seems simple but...