Re: Uploading files to different directory

  •  01-13-2010, 2:01 AM

    Re: Uploading files to different directory

    HI tanveerahmed_786 is not online. Last active: 01-05-2010, 5:21 PMtanveerahmed_786
     
    you can try.
                            string str = Request.ApplicationPath + "/uploads/" + strlmname;
                            string path = Server.MapPath(@"uploads\" + strlmname);
                            if (!Directory.Exists(path))
                            {
                                Directory.CreateDirectory(path);
                            }
                            this.Cuteeditor1.SetSecurityImageGalleryPath(str); 
View Complete Thread