บทช่วยสอน ASP

ASP HOME

กวดวิชา WP

แนะนำหน้าเว็บ มีดโกนหน้าเว็บ เค้าโครงหน้าเว็บ โฟลเดอร์หน้าเว็บ หน้าเว็บทั่วโลก แบบฟอร์มหน้าเว็บ วัตถุหน้าเว็บ ไฟล์หน้าเว็บ ฐานข้อมูลหน้าเว็บ ผู้ช่วยหน้าเว็บ หน้าเว็บ WebGrid แผนภูมิหน้าเว็บ อีเมลหน้าเว็บ ความปลอดภัยของหน้าเว็บ เผยแพร่หน้าเว็บ ตัวอย่างหน้าเว็บ ชั้นเรียนของหน้าเว็บ

มีดโกน ASP.NET

แนะนำมีดโกน มีดโกนไวยากรณ์ มีดโกน C# ตัวแปร มีดโกน C# ลูป มีดโกน C# Logic ตัวแปรมีดโกน VB มีดโกน VB Loops มีดโกน VB Logic

ASP Classic

แนะนำ ASP ไวยากรณ์ ASP ตัวแปร ASP ขั้นตอน ASP เงื่อนไข ASP ASP วนรอบ แบบฟอร์ม ASP คุกกี้ ASP เซสชัน ASP แอปพลิเคชัน ASP ASP #รวม ASP Global.asa ASP AJAX อีเมล ASP ตัวอย่าง ASP

การอ้างอิง ASP

ฟังก์ชัน ASP VB คีย์เวิร์ด ASP VB การตอบสนอง ASP คำขอ ASP แอปพลิเคชัน ASP เซสชัน ASP เซิร์ฟเวอร์ ASP ข้อผิดพลาด ASP ASP FileSystem ASP TextStream ไดรฟ์ ASP ไฟล์ ASP โฟลเดอร์ ASP พจนานุกรม ASP ASP AdRotator ASP BrowserCap การเชื่อมโยงเนื้อหา ASP ตัวหมุนเนื้อหา ASP ASP Quick Ref

กวดวิชา ADO

แนะนำ ADO ADO Connect ชุดระเบียน ADO จอแสดงผล ADO แบบสอบถาม ADO ADO Sort เพิ่ม ADO ADO Update ADO ลบ สาธิต ADO ADO เร่งความเร็ว

วัตถุ ADO

คำสั่ง ADO การเชื่อมต่อ ADO ข้อผิดพลาด ADO ADO Field พารามิเตอร์ ADO ADO พร็อพเพอร์ตี้ บันทึก ADO ชุดระเบียน ADO ADO สตรีม ประเภทข้อมูล ADO

วัตถุASP TextStream


วัตถุ TextStream ใช้เพื่อเข้าถึงเนื้อหาของไฟล์ข้อความ


ตัวอย่างเพิ่มเติม


ไฟล์ข้อความ วิธีอ่านจากไฟล์ข้อความ


วิธีอ่านเฉพาะบางส่วนของไฟล์ TextStream


หนึ่งบรรทัด วิธีอ่านหนึ่งบรรทัดจากไฟล์ TextStream


วิธีอ่านบรรทัดทั้งหมดจากไฟล์ TextStream


วิธีข้ามจำนวนอักขระที่ระบุเมื่ออ่านไฟล์ TextStream


วิธีข้ามบรรทัดเมื่ออ่านไฟล์ TextStream


วิธีคืนค่าหมายเลขบรรทัดปัจจุบันในไฟล์ TextStream


วิธีรับหมายเลขคอลัมน์ของอักขระปัจจุบันในไฟล์


วัตถุ TextStream

วัตถุ TextStream ใช้เพื่อเข้าถึงเนื้อหาของไฟล์ข้อความ

รหัสต่อไปนี้สร้างไฟล์ข้อความ (c:\test.txt) แล้วเขียนข้อความลงในไฟล์ (ตัวแปร f คืออินสแตนซ์ของวัตถุ TextStream):

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.Close
set f=nothing
set fs=nothing
%>


ในการสร้างอินสแตนซ์ของวัตถุ TextStream คุณสามารถใช้วิธี CreateTextFile หรือ OpenTextFile ของวัตถุ FileSystemObject หรือคุณสามารถใช้วิธีการ OpenAsTextStream ของวัตถุ File

คุณสมบัติและวิธีการของวัตถุ TextStream อธิบายไว้ด้านล่าง:

คุณสมบัติ

Property Description
AtEndOfLine Returns true if the file pointer is positioned immediately before the end-of-line marker in a TextStream file, and false if not
AtEndOfStream Returns true if the file pointer is at the end of a TextStream file, and false if not
Column Returns the column number of the current character position in an input stream
Line Returns the current line number in a TextStream file

วิธีการ

Method Description
Close Closes an open TextStream file
Read Reads a specified number of characters from a TextStream file and returns the result
ReadAll Reads an entire TextStream file and returns the result
ReadLine Reads one line from a TextStream file and returns the result
Skip Skips a specified number of characters when reading a TextStream file
SkipLine Skips the next line when reading a TextStream file
Write Writes a specified text to a TextStream file
WriteLine Writes a specified text and a new-line character to a TextStream file
WriteBlankLines Writes a specified number of new-line character to a TextStream file