Windows 2003 - IIS6 Hosting Provider
FREE WebMail as standard with all hosting account
Hosting with a difference ...
In ASP.NET you can write the content of a file directly to the output stream by using the writefile property of response object. The following ASP.NET code displays the content of any specified file on the client browser:
<%@ Import Namespace="System.IO" %> <%@ Import Namespace="System.Data" %>
<html> <body> <script language="VB" runat="server"> Sub Page_Load(Src As Object, E As EventArgs) Response.writefile("mydatafile.txt") End Sub </script> </body> </html>