[RESOLVED] Escaping " marks
Hi all,
Quick question:
I'm writing a program where the user writes stuff in a text box, and submits them to the server, and then it can download them and output them again, similar to an e-mail/messenger kind of thing. The problem is that if you put " marks in the text box, VB picks that up as the end of string and only outputs so much. For example, the string:
Code:
regfop8uyh3ulok5hy79
df8oyuvbh53einhu5
e4y5gh
erdhbgy45e5uh
""""""
dgbf08u5
""
3w09tujew89gtij){*U($
will only display the value:
Code:
3w09tujew89gtij){*U($
It stores the data to the server (via FTP) fine, downloads it fine, the problem is in the reading of the file. So my basic question is: How can you excapt Quote "" marks in text fields so that they show up as part of the string, and aren't used as an operator?
Thanks ^_^