บทช่วยสอน 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

วัตถุบันทึก ADO


บันทึกวัตถุ (ADO เวอร์ชัน 2.5)

ออบเจ็กต์ ADO Record ใช้เพื่อเก็บแถวในชุดระเบียน ไดเร็กทอรี หรือไฟล์จากระบบไฟล์

ADO เข้าถึงได้เฉพาะฐานข้อมูลที่มีโครงสร้างในเวอร์ชันก่อนหน้า 2.5 ในฐานข้อมูลที่มีโครงสร้าง แต่ละตารางมีจำนวนคอลัมน์เท่ากันในแต่ละแถว และแต่ละคอลัมน์จะประกอบด้วยประเภทข้อมูลเดียวกัน

ออบเจ็กต์บันทึกอนุญาตให้เข้าถึงชุดข้อมูลซึ่งจำนวนคอลัมน์และ/หรือประเภทข้อมูลอาจแตกต่างกันไปในแต่ละแถว 


ไวยากรณ์

objectname.property
objectname.method

คุณสมบัติ

Property Description
ActiveConnection Sets or returns which Connection object a Record object belongs to
Mode Sets or returns the permission for modifying data in a Record object
ParentURL Returns the absolute URL of the parent Record
RecordType Returns the type of a Record object
Source Sets or returns the src parameter of the Open method of a Record object
State Returns the status of a Record object

วิธีการ

Method Description
Cancel Cancels an execution of a CopyRecord, DeleteRecord, MoveRecord, or Open call
Close Closes a Record object
CopyRecord Copies a file or directory to another location
DeleteRecord Deletes a file or directory
GetChildren Returns a Recordset object where each row represents the files in the directory
MoveRecord Moves a file or a directory to another location
Open Opens an existing Record object or creates a new file or directory


ของสะสม

Collection Description
Properties A collection of provider-specific properties
Fields Contains all the Field objects in the Record object

คุณสมบัติของ The Fields Collection

Property Description
Count Returns the number of items in the fields collection. Starts at zero.

Example:

countfields=rec.Fields.Count

Item(named_item/number) Returns a specified item in the fields collection.

Example:

itemfields=rec.Fields.Item(1)
or
itemfields = rec.Fields.Item("Name")