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.