Allegare un file

di il
2 risposte

Allegare un file

Ciao a tutti.
Da una pagina asp voglio allegare un file testo.Più precisamente il cliente deve allegare un file al suo account e metterlo nel database.Il file evidentemente si trova nel computer del cliente.Io ho provato cosi:

Dim fsoMyFile
Dim tsTextStream
Dim sTesto
Set fsoMyFile = CreateObject("Scripting.FileSystemObject")
Set tsTextStream = fsoMyFile.OpenTextFile(Server.MapPath("C:\Documents and Settings\Marian\Desktop\xxx.txt"),1)
sTesto = tsTextStream.ReadLine
tsTextStream.Close
Response.Write sTesto

Ho provato vari modi ma mi da errore:

Server.MapPath() error 'ASP 0172 : 80004005'
Invalid Path

/asp/alege.asp, line 17

The Path parameter for the MapPath method must be a virtual path. A physical path was used. Server.MapPath() error 'ASP 0172 : 80004005'

Come faccio ha trovare il file local e non sul server?Server.MapPath cerca i file solo sul server?Non capisco...Insomma..Mi potete aiutare?Grazie.

2 Risposte

  • Re: Allegare un file

    <BLOCKQUOTE id=quote><!--<font size= face="" id=quote>-->quote:<hr height=1 noshade id=quote>
    Ciao a tutti.
    Da una pagina asp voglio allegare un file testo.Più precisamente il cliente deve allegare un file al suo account e metterlo nel database.Il file evidentemente si trova nel computer del cliente.Io ho provato cosi:

    Dim fsoMyFile
    Dim tsTextStream
    Dim sTesto
    Set fsoMyFile = CreateObject("Scripting.FileSystemObject")
    Set tsTextStream = fsoMyFile.OpenTextFile(Server.MapPath("C:\Documents and Settings\Marian\Desktop\xxx.txt"),1)
    sTesto = tsTextStream.ReadLine
    tsTextStream.Close
    Response.Write sTesto

    Ho provato vari modi ma mi da errore:

    Server.MapPath() error 'ASP 0172 : 80004005'
    Invalid Path

    /asp/alege.asp, line 17

    The Path parameter for the MapPath method must be a virtual path. A physical path was used. Server.MapPath() error 'ASP 0172 : 80004005'

    Come faccio ha trovare il file local e non sul server?Server.MapPath cerca i file solo sul server?Non capisco...Insomma..Mi potete aiutare?Grazie.



    <hr height=1 noshade id=quote></BLOCKQUOTE id=quote><!--</font id=quote><font face="" size= id=quote>-->

    Alex01
  • Re: Allegare un file

    Server.MapPath cerca i file solo sul server?
    Assolutamente SI.
    Altrimenti pensa cosa avrebero combinato questi hackeri.


    Alex01
Devi accedere o registrarti per scrivere nel forum
2 risposte