Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Speegs #1
Help with Mail Script CDO/ASP and Session Var
I have a mailscript CDO using ASP technology, and I need to include the aid
valude or id value of the recordset in the script so they can click the link to
the article.
usxCDO.Body = "You had subscribed to receive an email notification when
comments were posted to this blog topic.
http://209.208.104.67/articles_details.asp?id=Session("svurl")"
Speegs Guest
-
Form Mail Script
Hello, could anyone tell me exactly how to edit the script to make it work and where to place the files on my website directories? I've been... -
cgi mail script anyone?
I need to send a mail from the cgi. It must be able to have a reply or sender as someone different from the local web owner (apache). My... -
Mail Script Help.
"." </@.> writes: Yo Walt, try putting your name in the From field of your post, makes you look less lurky. Try, using the Open URL script... -
the script hangs up when i try to send mail with attachments using MAIL::Sender...???
As said in the topic... when i try to send an e-mail message using Mail::Sender the script hangs up before execution of $sender ->... -
what's wrong with this form mail script?
Hi James, WA Universal Email is a commercially available Dreamweaver extension that is fully-loaded with premium features. The extension supports... -
Chris In Madison #2
Re: Help with Mail Script CDO/ASP and Session Var
Try this:
usxCDO.Body = "You had subscribed to receive an email notification when
comments were posted to this blog topic.
http://209.208.104.67/articles_details.asp?id=" & Session("svurl")
Best regards,
Chris
Chris In Madison Guest
-
Speegs #3
Re: Help with Mail Script CDO/ASP and Session Var
Awesome thanks Chris
does the " tell the line there is more and the & is the include.
Speegs Guest
-
Chris In Madison #4
Re: Help with Mail Script CDO/ASP and Session Var
The .Body property is a string, so what's in the quotes is literally
interpreted. So if you put the session code inside the quotes, it uses it
literally. The & is the standard VBScript concatenator, so basically it's
taking the string value and appending the session variable to it, hence the
complete value :-)
Best regards,
Chris
Chris In Madison Guest



Reply With Quote

