Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
content="<%=HTMLEncode(RS(Field))%>"
Function SQLQuotes(inputString) [green]'Handles the sql string quotes both single and double.[/green]
If NOT isNull(inputString) Then
SQLQuotes = Replace(Replace(inputString,"'","''"),Chr(34),Chr(34)&chr(34))
Else
SQLQuotes = ""
end if
End Function