how to concat a string with slash in classic asp?

The following is the script to rewrite file path to url path\[code\]tempFileName = rs("filename")tempFilePath = rs("path")domainname = Request.ServerVariables("SERVER_NAME")realUrl = Replace(tempFilePath, "c:\inetpub\wwwroot", domainname)response.write("http://" & realUrl & "<br>") ^^\[/code\]The last statement of the script with two slash, i don't know how to do string concatenation. anyone knows?
 
Top