file uploading (error: Illegal characters in path) Urgent!
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, I am uploading multiple files from my web application. It is working fine on local pc. But when I am trying to upload file on server it gives erroe as "Illegal characters in path". Can any one give me solution for this ?? Thanks!:rose:
-
Hi, I am uploading multiple files from my web application. It is working fine on local pc. But when I am trying to upload file on server it gives erroe as "Illegal characters in path". Can any one give me solution for this ?? Thanks!:rose:
Maybe U should use this string path = Server.MapPath(@"~\Your_folder"); "@" means to escape backslash into string. And "~\" means that your files will upload into server folder. :)
Regard, Edwin