Question : Sending white space in a variable in resonse.write

There is probably a very simple to solution to this but I can't seem to find it.  I have a variable that I'm using in a response.write command that contains spaces.  When I use the code below it only displays the first word of the variable str.  What do I need to do get all of the words in the variable str to display?
1:
response.write("<table><tr><td>Business Name</td><td><input type=""text"" name=""business"" value=" & str & "/></td></tr></table>")

Answer : Sending white space in a variable in resonse.write

Try :

1:
response.write("<table><tr><td>Business Name</td><td><input type='text' name='business' value='" & str & "' /></td></tr></table>")
Random Solutions  
 
programming4us programming4us