readerquery.dsr

来自「图书管理系统」· DSR 代码 · 共 42 行

DSR
42
字号
VERSION 5.00
Begin {17016CEE-E118-11D0-94B8-00A0C91110ED} 图书管理查询系统 
   ClientHeight    =   5445
   ClientLeft      =   750
   ClientTop       =   1425
   ClientWidth     =   7320
   _ExtentX        =   9657
   _ExtentY        =   8440
   MajorVersion    =   0
   MinorVersion    =   8
   StateManagementType=   1
   ASPFileName     =   ""
   DIID_WebClass   =   "{12CBA1F6-9056-11D1-8544-00A024A55AB0}"
   DIID_WebClassEvents=   "{12CBA1F5-9056-11D1-8544-00A024A55AB0}"
   TypeInfoCookie  =   0
   BeginProperty WebItems {193556CD-4486-11D1-9C70-00C04FB987DF} 
      WebItemCount    =   0
   EndProperty
   NameInURL       =   "WebClass1"
End
Attribute VB_Name = "图书管理查询系统"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit
Option Compare Text

Private Sub WebClass_Start()
    
    '写一个对用户的回答
    With Response
        .Write "<html>"
        .Write "<body>"
        .Write "<h1><font face=""Arial"">WebClass1 起始页</font></h1>"
        .Write "<p>本响应是在 WebClass1 的起始事件中创建的。</p>"
        .Write "</body>"
        .Write "</html>"
    End With

End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?