Hi! I'm doing a project in ASP. NET, I'm hoping that this is the correct forum for it. I am creating a validation page and most of the validations can be handled by validators. One validation is to make sure that all my SQL string statements are checked for single quotes and converted to double quotes. Now, I was trying to stay away from using vbscript alltogether, but I couldn't figure out the way to use Regex to solve this one. So, I used VBscript to convert the single quotes to double quotes. The conundrum is that I have to display the converted text to the same page the validation page is on. Is there a function in vbscript that will allow me to send my converted text as some sort of variable back to my customized validator in my asp.net code, so that I can display it on the same page that I'm filling in?