|
Subject:
|
Problems with CDO and ASP
|
|
Posted By:
|
nancy
|
Post Date:
|
4/4/2006 9:16:10 AM
|
Hi I'm trying to create an email notification that incldues a "dynamic" link to a newly created EXCEL sheet. But something's wrong with my syntax (quatation marks I'm sure! )
Please review and forward your recommendations:
here's the line that is a probelm (obviously you'll need to copy into a file whic hwon't cause it to wrap as in this form field.):
strHTML = strHTML & "<a href="""<%=g_filename%>".xls"" target=""_blank"">here</a>"
Thank you for your help in this matter, nancy
|
|
Reply By:
|
ChrisScott
|
Reply Date:
|
4/4/2006 9:53:52 AM
|
Hi Nancy,
Try
strHTML = strHTML & "<a href=""" & g_filename & ".xls"" target=""_blank"">here</a>" HTH,
Chris
|
|
Reply By:
|
nancy
|
Reply Date:
|
4/7/2006 8:13:47 AM
|
Thanks Chris, It works now.
Much appreciated.
nancy
|