Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Upload file
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Titre:
Versions des environnements
Environment:
ASP.NET
OS:
Windows 2000 SP4
Network:
Windows 2000 Server
Database:
Oracle
Divers
Thread ID:
00970493
Message ID:
00970793
Vues:
19
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform