Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Upload file
Message
General information
Forum:
ASP.NET
Category:
Other
Title:
Environment versions
Environment:
ASP.NET
OS:
Windows 2000 SP4
Network:
Windows 2000 Server
Database:
Oracle
Miscellaneous
Thread ID:
00970493
Message ID:
00970793
Views:
18
>Dear All,
>
>How to upload file(s) to spesified folder via ASP.NET? .. please advise
>
>Regards
>Winanjaya


protected System.Web.UI.HtmlControls.HtmlInputFile YourFile;

there is a click event that will fire.

string ToServer = @"ServerPath\File.Extension";
string FromFile = PriceFile.PostedFile.FileName;
File.Copy (FromFile, ToServer, true);

HTH

__Stephen
Previous
Reply
Map
View

Click here to load this message in the networking platform