C
cedced
Hello,
is it possible to access client files in VB.NET?
What?
I have doing that but it isn't good (VB.NET take file on pc server and not
on pc client):
(thanks)
Dim fichier As StreamReader
Dim name As String
fichier = File.OpenText("C:\liste.txt")
name = fichier.ReadLine()
Response.Write(name)
Do While Not name Is Nothing
name = fichier.ReadLine()
Response.Write(name)
Loop
fichier.Close()
is it possible to access client files in VB.NET?
What?
I have doing that but it isn't good (VB.NET take file on pc server and not
on pc client):
(thanks)
Dim fichier As StreamReader
Dim name As String
fichier = File.OpenText("C:\liste.txt")
name = fichier.ReadLine()
Response.Write(name)
Do While Not name Is Nothing
name = fichier.ReadLine()
Response.Write(name)
Loop
fichier.Close()