|
Show the content of a textfile
Author:
Jan Welker
|
Programming Language:
ASP.net |
Rating:
not yet rated
|
Views:
2073 |
Description:
Show the content of a textfile
|
|
| ASP.NET |
1
2
3
|
Dim SW As New System.IO.StringWriter
Server.Execute("Test.txt", SW)
Response.Write(SW.ToString())
|
|
|
This Snippets could be interesting for you:
|
|
|
|
|
|
|
|
Comments:
(Please log in to write an comment.)
|
|
|