I have an application which I've developed for a friend. What this application does is send a POST request to the vb forum software and logs someone in (with out setting cookies or anything).
Once the user is logged in i create a variable that creates a path on their local machine.
c:\tempfolder\date\username
The problem is that some usernames are throwing "Illegal chars" exception. for example if my username was mas|fenix it would throw an exception..
Path.Combine(Environment.GetFolderPath(System.Environment.SpecialFolder.CommonApplicationData), DateTime.Now.ToString("ddMMyyhhmm") + "-" + form1.username)
I dont want to remove it from the string, but a folder with their username is created through FTP on a server. ANd this leads to my second question. If i am creating a folder on the server can I leave the "illegal chars" in? I only ask this because the server is linux based, and I am not sure if linux accepts it or not..
EDIT: IT seems that URL encode is NOT what I want.. Heres What I want to do:
old username = mas|fenix new username = mas%xxfenix where %xx is the ascii value or any other value that would easily identify the character...
