Using a FileStream to read a system file (VB) : FileStream « File Directory « ASP.NET Tutorial

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » File Directory » FileStream 
10.14.2.Using a FileStream to read a system file (VB)
<%@ Page Language="VB" %>
<%@ Import Namespace="System.IO" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim fs As New FileStream(Server.MapPath("Data.txt"), FileMode.Open)
        Dim data(fs.LengthAs Byte
        fs.Read(data, 0, fs.Length)
        fs.Close()

    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    </div>
    </form>
</body>
</html>
10.14.FileStream
10.14.1.Using a FileStream to read a system file (C#)
10.14.2.Using a FileStream to read a system file (VB)
10.14.3.Use FileStream to read file (VB.net)
10.14.4.Using I/O enumerations to control file behavior when writing a file (C#)
10.14.5.Using I/O enumerations to control file behavior when writing a file (VB)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.