What Character Use For Blank Space (ftp Folder To Download File)?
i use vb6 Programming language. i use msinet.ocx activex for download any file for net. but one ftp folder r use blank space. so can’t download files from thes folder.
Tags: Blank, Character, Download, File, Folder, Space, What
This entry was posted
on Sunday, September 6th, 2009 at 5:35 pm and is filed under ocx files.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
Some characters in the web have to be URL-encoded. It means, instead of such character you need to place its hexadecimal value preceded by percent. E.g., whitespace (ASCII 32) will be represented as %20.
Example:
“some URL with whitespaces”
will become
“some%20URL%20with%20whitespaces”
try quoting the name “like this” or use backslash like this.