This topic is locked

html in message coding

10/19/2017 1:12:43 PM
ASPRunnerPro General questions
bnphillips author

Asprunner Pro 9.6 (build 27464 x86)
In the - before add and after add event screens, ... to enter messages, the format is as follows:

message="your message here"

message= message & "more of your message here"

You may also use the preformated events: Response.Write "Your message here"
In either case if I wanted to include a hypertext reference for a link in above message code.... ie <a href="http://www.site.com/directory/page.html">; MyLabeltext</a> ......since this html reference is - by itself- ... text that contains double quotes (") already. How would I handle existing quoted text within the link in such a way that link shows up as an underlined clickable link MyLabelText? Also if this can be accomplished?, .... would there be any difference between methods? ie (message= /OR Responce.Write). Samples of this would greatly help me..
thank you advance for your time...
I am also struggling with ..... Response.Redirect "anypage.asp" My confusion is how to use a anchor link and/or absolute ref link. Specifically I would like a redirect to my menu.asp page. I have tried various iterations of ../menu.asp and others to no avail. If any here can give some samples of how to do this - I would greatly appreciate this also.

admin 10/23/2017

In ASP you use an extra double quote to escape a quote:

http://www.plus2net.com/asp-tutorial/escape.php