#1
|
|||
|
|||
Is there a way HTMLize a string?
I need to put some text into an html link to send an html email. Is there a way to expand a string so it converts a string to valid html?
thanks Rich |
#2
|
|||
|
|||
I'm not exactly sure what you looking for, but perhaps something like this would work:
<html> <head> <title>My page title</title> </head> <body> <p>Here is my message with <a href="xyz.html">a link</a>.</p> </body> </html> |
#3
|
|||
|
|||
if
%LINK% = "file:\\\c:\program files\path with spaces" this snippet <html> <head> <title>My page title</title> </head> <body> <p>Here is my message with <a href="%LINK%">a link</a>.</p> </body> </html> doesnt expand into a usable link... |
#4
|
|||
|
|||
Attached is one way (uses project script code based on http://www.planet-source-code.com/vb...43806&lngWId=1).
|
#5
|
|||
|
|||
Wow,
thanks, thats just what I needed. A newbie question... where is that vb script stored in the bld file? I dont see it stored in the script? thanks Rich |
#6
|
|||
|
|||
|
|