I need to be able to use Quaotations within my ASP code but am not sure if its possible.
Heres an example, I have a variable
SetDisplayText = "<a href='" & SetLinkAction & "' onclick="NewWindow(this.href,'name','300','125','n o');return false;">" & SetCurrentNumber & "</a>"
On the OnClick, it has ("), I cannot use the tick mark (') becuase it is containined within the OnClick which sets the popup window size.
I remeber an older language where you coukd type something like /"/ and it wouldnt recognize it as closing the quotations.
The way the code above works now, after onclick where the (") is, it ends the text and starts asp.
So basically, is there a way to include a quotation (") within asp while making it look like text instead of iopening and closing the tag?
