Les Snippets

Connexion

Upload en changeant le nom du fichier

Niveau requis pour utiliser/comprendre cette source : 1 ( Débutant )
Créé le 05/05/2006 11:24:54 et initié par danielamaury [Liste]
Date de mise à jour : 04/06/2006 19:24:58
Vue : 12147
Catégorie(s) : WebForm
Langages dispo pour ce code :
- ASP.NET 2.x, VB 2005



Langage : VB 2005 , ASP.NET 2.x
Date ajout : 05/05/2006
Posté par danielamaury [Liste]
DateMAJ : 04/06/2006
Public Function UploadNom(ByVal File As FileUpload, ByVal Destination As String, ByVal Nom As String) As String 
    Dim NomFile As String = File.PostedFile.FileName
    Dim NomFinal As String = Nom & System.IO.Path.GetExtension(NomFile) 
    File.PostedFile.SaveAs(Destination & NomFinal)
    Return NomFinal 
End Function


Snippets en rapport avec : Fichier, Téléchargement, Upload, Renommer, Uploader



Codes sources en rapport avec : Fichier, Téléchargement, Upload, Renommer, Uploader

{PHP} UPLOAD MULTIPLE OU SIMPLE DES FICHIERS
il n'a jamais été aussi facile de transferer des fichiers sur votre serveur. /* EXPLICATION ET REG...

{Visual Basic, VB6, VB.NET, VB 2005} UPLOADER UN FICHIER
Un petit prog (tout petit) qui permet d uploader un fichier....

{ColdFusion} UPLOAD D'UN FICHIER ET RÉCUPÉRATION DE SON NOM.
Lors d'un Upload de fichier, il peut être interressant de récupérer son nom d'origine pour par exemp...

{Visual Basic, VB6, VB.NET, VB 2005} MAGIC FILE NAME : RENOMMEZ VOS FICHIERS AUTOMAGIQUEMENT !
Magic File Name est un petit outil pour renommer tous vos fichiers selon les critères choisis. Comme...

{PHP} UPLOADER DES FICHIER DANSUN DOSSIER, SÉCURISÉ AVEC MOT DE PASSE
Petit script PHP sans aucune prétention qui permet d'uploader des fichier de tout type dans un dossi...

{Visual Basic, VB6, VB.NET, VB 2005} TÉLÉCHARGEUR DE FICHIER SUR MEGAUPLOAD
Mega-téléchargeur: Cette application permet de télécharger sur megaupload.com des fichiers sans ...

{Visual Basic, VB6, VB.NET, VB 2005} RENOMMER TOUS LES FICHIERS D'UN DOSSIER PAR CLIC DROIT
Renommer tous les fichiers d'un dossier par clic droit sur ce dossier. Un menu contextuel sur les do...

{PHP} A-ANNONCES VERSION PHP 5
bonjour Le script n'est pas de moi mais j'ai mis ce code déjà ancien à la sauce PHP5 http://www....

{PHP} GESTION FTP (CLASSE)
Cette classe permet de : - se connecter à un serveur FTP (SSL ou non) - afficher un listing comple...

{PHP} UPLOADER DE FICHIER PHP - AVEC GESTION DES FICHIERS
petit system simple d'upload de fichier en php. la parti visiteur, index.php, permet de: downloa...