tehon3299
Well-known member
How can I parse through a filename and replace all the spaces with %20 so that I can allow the file to be downloaded?
filename = System.Web.HttpUtility.UrlEncode(filename)
filename = filename.Replace(" ", "%20")