Parsing Filename

Im doing that already but then it inserts + in all the spaces and then the link doesnt match the file that I want to be downloaded.
I.E. Test File.txt will become Test+File.txt

Now what do I do?
 
In that case, just use the Replace function:

Code:
filename = filename.Replace(" ", "%20")
 
Back
Top