บทช่วยสอน 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 WillChangeRecordsetและ RecordsetChangeComplete Events


❮ การอ้างอิงออบเจ็กต์ชุดระเบียนที่สมบูรณ์

เหตุการณ์ WillChangeRecordset

เหตุการณ์ WillChangeRecordset ถูกทริกเกอร์ก่อนที่การดำเนินการจะเปลี่ยนชุดระเบียน

หมายเหตุ:ก่อนที่เหตุการณ์นี้จะกลับมา ให้ตั้งค่าพารามิเตอร์สถานะเป็น adStatusCancel เพื่อยกเลิกการดำเนินการที่ทำให้เกิดเหตุการณ์นี้ หรือตั้งค่าเป็น adStatusUnwantedEvent เพื่อป้องกันการแจ้งเตือนที่ตามมา

เหตุการณ์ RecordsetChangeComplete

เหตุการณ์ RecordsetChangeComplete ถูกทริกเกอร์หลังจากชุดระเบียนมีการเปลี่ยนแปลง

หมายเหตุ:ก่อนที่เหตุการณ์นี้จะกลับมา ให้ตั้งค่าพารามิเตอร์สถานะเป็น adStatusUnwantedEvent เพื่อป้องกันการแจ้งเตือนที่ตามมา

หมายเหตุ: เหตุการณ์ WillChangeRecordset และ RecordsetChangeComplete สามารถเกิดขึ้นได้เมื่อเรียกเมธอด Requery หรือเมธอด Open ของออบเจกต์ Recordset

ไวยากรณ์

WillChangeRecord reason,status,objRs

RecordsetChangeComplete reason,objErr,status,objRs

Parameter Description
reason An EventReasonEnum value that specifies the reason for this event
status An EventStatusEnum value that indicates the status of the execution of the event
objErr The name of an Error object that describes the error if status is set to adStatusErrorsOccurred, otherwise it is not set
objRs The name of the Recordset object that triggered this event

เหตุการณ์ เหตุผล ค่า Enum

Constant Value Description
adRsnRequery 7 An operation requeried the Recordset
adRsnResynch 8 An operation resynchronized the Recordset with the database
adRsnClose 9 An operation closed the Recordset

EventStatusค่า Enum

Constant Value Description
adStatusOK 1 The operation that caused the event was successful
adStatusErrorsOccurred 2 The operation that caused the event failed
adStatusCantDeny 3 The operation that caused the event cannot be cancelled
adStatusCancel 4 The operation that caused the event is cancelled
adStatusUnwantedEvent 5 Prevents subsequent notifications before the event method has finished executing

❮ การอ้างอิงออบเจ็กต์ชุดระเบียนที่สมบูรณ์