I am trying to make some small changes to an old VB web app I need to add quotes inside of a string I\'ve had no luck so far. The string is
Dim sql As Stri
You can use "" to insert a quote into a string e.g:
""
dim sometext as String = "Hello ""Frank"" how are you?"
Which gives you
Hello "Frank" how are you?