บทช่วยสอน 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 WillMoveและ MoveCompleteกิจกรรม


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

งาน WillMove

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

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

เหตุการณ์ MoveComplete

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

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

หมายเหตุ:เหตุการณ์ WillMove หรือเหตุการณ์ MoveComplete อาจเกิดขึ้นเมื่อมีการเรียกหนึ่งในวิธีชุดระเบียนต่อไปนี้: Open, Move, MoveFirst, MoveLast, MoveNext, MovePrevious, AddNew และ Requery เหตุการณ์เหล่านี้อาจเกิดขึ้นเนื่องจากคุณสมบัติต่อไปนี้: ตัวกรอง ดัชนี บุ๊กมาร์ก AbsolutePage และ AbsolutePosition

ไวยากรณ์

WillMove reason,status,objRs

MoveComplete 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
adRsnMove 10 An operation moved the record pointer within the Recordset
adRsnMoveFirst 12 An operation moved the record pointer to the first record in the Recordset
adRsnMoveNext 13 An operation moved the record pointer to the next record in the Recordset
adRsnMovePrevious 14 An operation moved the record pointer to the previous record in the Recordset
adRsnMoveLast 15 An operation moved the record pointer to the last record in 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

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