I have got a small page which simply allows user to upload a picture to the server
I use a HTMLInput control called file then ..
this helps me save the file to the server from which this page is invoked say for e.g. server .11
What i am trying to accomplish is when user clicks on upload .. it saves to .11 as above and also to a folder in another server e.g. .12 Is there any class in .NET that can help accomplish this or any suggestions ?
Thanks
I use a HTMLInput control called file then ..
Code:
path = this.MapPath("")+"\\images\\";
file.PostedFile.SaveAs(path+filename);
this helps me save the file to the server from which this page is invoked say for e.g. server .11
What i am trying to accomplish is when user clicks on upload .. it saves to .11 as above and also to a folder in another server e.g. .12 Is there any class in .NET that can help accomplish this or any suggestions ?
Thanks