⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employees.htm

📁 access + Delphi 做的 是服务端程序 共七个form
💻 HTM
📖 第 1 页 / 共 3 页
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML xmlns="http://www.w3.org/TR/REC-html40" 
XMLNS:o="urn:schemas-microsoft-com:office:office" 
XMLNS:x="urn:schemas-microsoft-com:office:excel" 
XMLNS:a="urn:schemas-microsoft-com:office:access" 
XMLNS:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:o = 
"urn:schemas-microsoft-com:office:office" xmlns:x = 
"urn:schemas-microsoft-com:office:excel" xmlns:a = 
"urn:schemas-microsoft-com:office:access" xmlns:dt = 
"uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"><HEAD><TITLE>雇员</TITLE>
<SCRIPT language=vbscript>
<!--
Function ReadVariable(strVariableName)
	'these five variables are used in the string manipulation
	'code that finds the variable in the cookie.
	Dim intLocation
	Dim intNameLength
	Dim intValueLength
	Dim intNextSemicolon
	Dim strTemp

	'calculate length and location of variable name
	intNameLength = Len(strVariableName)
	intLocation = Instr(Document.Cookie, strVariableName)

	 'check for existence of variable name			
	 If intLocation = 0 Then
	     'variable not found, so it can't be read
	     ReadVariable = NOT_FOUND
	 Else
	     'get a smaller substring to work with
	     strTemp = Right(Document.Cookie, Len(Document.Cookie) - intLocation + 1)

	     'check to make sure we found the full string, not just a substring
	     If Mid(strTemp, intNameLength + 1, 1) <> "=" Then
	         'oops, only found substring, not good enough
		 ReadVariable = NOT_FOUND

		 'note that this will incorrectly give a not found result if and only if
		 'a search for a variable whose name is a substring of a preceding
		 'variable is undertaken.  For example, this will fail:
		 '
		 'search for:		MyVar
	         'cookie contains: 	MyVariable=2;MyVar=1
	     Else
		 'found full string
		 intNextSemicolon = Instr(strTemp, ";")

		 'if not found, then we need the last element of the cookie
		 If intNextSemicolon = 0 Then intNextSemicolon = Len(strTemp) + 1

		 'check for empty variable (Var1=;)
		 If intNextSemicolon = (intNameLength + 2) Then
		     'variable is empty
		     ReadVariable = ""
		 Else
		     'calculate value normally
	  		     intValueLength = intNextSemicolon - intNameLength - 2
		     ReadVariable = Mid(strTemp, intNameLength + 2, intValueLength)
		 End If
	     End If
	    End if
End Function

Sub SetVariable(strVariableName, varVariableValue)
    Document.Cookie = strVariableName & "=" & varVariableValue
End Sub

Sub KillVariable(strVariableName)
	SetVariable strVariableName, "NULL;expires=Monday, 01-Jan-95 12:00:00 GMT"
End Sub
-->
</SCRIPT>

<SCRIPT event=onload for=window language=vbscript>
<!--
Dim strFilter

strFilter = ReadVariable("filter")

MSODSC.RecordsetDefs.Item(0).ServerFilter = strFilter
-->
</SCRIPT>

<META content="HTML 4.0" name=vs_targetSchema><LINK 
href="Employees.files/filelist.xml" rel=File-List type=text/xml>
<META content=Access.Application name=ProgId>
<META content=2226 name=Version>
<META content=2052 name="Language Code">
<META name=VBSForEventHandlers VALUE="TRUE">
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<META content=10.00.2225 name=DesignerVersion>
<OBJECT classid=CLSID:0002E553-0000-0000-C000-000000000046 id=MSODSC 
tabIndex=-1><PARAM NAME="XMLData" VALUE="<xml xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot;>&#13;&#10; <a:DataSourceControl>&#13;&#10;  <a:OWCVersion>10.0.0.2502         </a:OWCVersion>&#13;&#10;  <a:ConnectionString>Provider=Microsoft.Jet.OLEDB.4.0;Password=&amp;quot;&amp;quot;;User ID=Admin;Data Source=Northwind.mdb;Mode=Share Deny None;Extended Properties=&amp;quot;&amp;quot;;Jet OLEDB:System database=&amp;quot;&amp;quot;;Jet OLEDB:Registry Path=&amp;quot;&amp;quot;;Jet OLEDB:Database Password=&amp;quot;&amp;quot;;Jet OLEDB:Engine Type=0;Jet OLEDB:Database Locking Mode=1;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password=&amp;quot;&amp;quot;;Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False</a:ConnectionString>&#13;&#10;  <a:MaxRecords>10000</a:MaxRecords>&#13;&#10;  <a:GridX>24</a:GridX>&#13;&#10;  <a:GridY>24</a:GridY>&#13;&#10;  <a:OfflineType>2</a:OfflineType>&#13;&#10;  <a:XMLLocation>0</a:XMLLocation>&#13;&#10;  <a:XMLDataTarget></a:XMLDataTarget>&#13;&#10;  <a:ConnectionFile></a:ConnectionFile>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>EmployeeID</a:ElementID>&#13;&#10;   <a:ControlSource>雇员ID</a:ControlSource>&#13;&#10;   <a:ChildLabel>EmployeeID_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>LastName</a:ElementID>&#13;&#10;   <a:ControlSource>姓氏</a:ControlSource>&#13;&#10;   <a:ChildLabel>LastName_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>FirstName</a:ElementID>&#13;&#10;   <a:ControlSource>名字</a:ControlSource>&#13;&#10;   <a:ChildLabel>FirstName_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>Title</a:ElementID>&#13;&#10;   <a:ControlSource>职务</a:ControlSource>&#13;&#10;   <a:ChildLabel>Title_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>BirthDate</a:ElementID>&#13;&#10;   <a:ControlSource>出生日期</a:ControlSource>&#13;&#10;   <a:ChildLabel>BirthDate_Label</a:ChildLabel>&#13;&#10;   <a:Format>Long Date</a:Format>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>HireDate</a:ElementID>&#13;&#10;   <a:ControlSource>雇用日期</a:ControlSource>&#13;&#10;   <a:ChildLabel>HireDate_Label</a:ChildLabel>&#13;&#10;   <a:Format>Long Date</a:Format>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>Address</a:ElementID>&#13;&#10;   <a:ControlSource>地址</a:ControlSource>&#13;&#10;   <a:ChildLabel>Address_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>City</a:ElementID>&#13;&#10;   <a:ControlSource>城市</a:ControlSource>&#13;&#10;   <a:ChildLabel>City_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>Region</a:ElementID>&#13;&#10;   <a:ControlSource>地区</a:ControlSource>&#13;&#10;   <a:ChildLabel>Region_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>PostalCode</a:ElementID>&#13;&#10;   <a:ControlSource>邮政编码</a:ControlSource>&#13;&#10;   <a:ChildLabel>PostalCode_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>Country</a:ElementID>&#13;&#10;   <a:ControlSource>国家</a:ControlSource>&#13;&#10;   <a:ChildLabel>Country_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>HomePhone</a:ElementID>&#13;&#10;   <a:ControlSource>家庭电话</a:ControlSource>&#13;&#10;   <a:ChildLabel>HomePhone_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>Extension</a:ElementID>&#13;&#10;   <a:ControlSource>分机</a:ControlSource>&#13;&#10;   <a:ChildLabel>Extension_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>Notes</a:ElementID>&#13;&#10;   <a:ControlSource>备注</a:ControlSource>&#13;&#10;   <a:ChildLabel>Notes_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>ReportsTo</a:ElementID>&#13;&#10;   <a:ControlSource>上级</a:ControlSource>&#13;&#10;   <a:ListRowSource>上级_ListRowsource</a:ListRowSource>&#13;&#10;   <a:ListBoundField>雇员ID</a:ListBoundField>&#13;&#10;   <a:ListDisplayField>姓名</a:ListDisplayField>&#13;&#10;   <a:ChildLabel>ReportsTo_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>TitleOfCourtesy</a:ElementID>&#13;&#10;   <a:ControlSource>尊称</a:ControlSource>&#13;&#10;   <a:ChildLabel>TitleOfCourtesy_Label</a:ChildLabel>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:ElementExtension>&#13;&#10;   <a:ElementID>Image4</a:ElementID>&#13;&#10;   <a:ControlSource>照片</a:ControlSource>&#13;&#10;  </a:ElementExtension>&#13;&#10;  <a:GroupLevel>&#13;&#10;   <a:RecordSource>雇员</a:RecordSource>&#13;&#10;   <a:DefaultSort></a:DefaultSort>&#13;&#10;   <a:HeaderElementId>HeaderEmployees</a:HeaderElementId>&#13;&#10;   <a:FooterElementId></a:FooterElementId>&#13;&#10;   <a:CaptionElementId></a:CaptionElementId>&#13;&#10;   <a:RecordNavigationElementId>NavigationEmployees</a:RecordNavigationElementId>&#13;&#10;   <a:DataPageSize>1</a:DataPageSize>&#13;&#10;   <a:GroupFilterControl></a:GroupFilterControl>&#13;&#10;   <a:AlternateRowColor>whitesmoke</a:AlternateRowColor>&#13;&#10;  </a:GroupLevel>&#13;&#10;  <a:Datamodel a:version=&quot;0816&quot;>&#13;&#10;   <a:SchemaRowsource a:id=&quot;上级_ListRowsource&quot; a:type=&quot;dscCommandText&quot;>&#13;&#10;    <a:CommandText>SELECT [雇员].[雇员ID], [姓氏] +','+[名字] AS 姓名 FROM 雇员 ORDER BY [雇员].[姓氏], [雇员].[名字]; </a:CommandText>&#13;&#10;    <a:SchemaField a:id=&quot;雇员ID&quot; a:datatype=&quot;3&quot; a:size=&quot;4&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;姓名&quot; a:datatype=&quot;202&quot; a:size=&quot;255&quot;/>&#13;&#10;   </a:SchemaRowsource>&#13;&#10;   <a:SchemaRowsource a:id=&quot;雇员&quot; a:type=&quot;dscTable&quot;>&#13;&#10;    <a:SchemaField a:id=&quot;雇员ID&quot; a:datatype=&quot;3&quot; a:size=&quot;0&quot; a:iskey=&quot;1&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;姓氏&quot; a:datatype=&quot;130&quot; a:size=&quot;20&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;名字&quot; a:datatype=&quot;130&quot; a:size=&quot;10&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;职务&quot; a:datatype=&quot;130&quot; a:size=&quot;30&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;尊称&quot; a:datatype=&quot;130&quot; a:size=&quot;25&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;出生日期&quot; a:datatype=&quot;7&quot; a:size=&quot;0&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;雇用日期&quot; a:datatype=&quot;7&quot; a:size=&quot;0&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;地址&quot; a:datatype=&quot;130&quot; a:size=&quot;60&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;城市&quot; a:datatype=&quot;130&quot; a:size=&quot;15&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;地区&quot; a:datatype=&quot;130&quot; a:size=&quot;15&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;邮政编码&quot; a:datatype=&quot;130&quot; a:size=&quot;10&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;国家&quot; a:datatype=&quot;130&quot; a:size=&quot;15&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;家庭电话&quot; a:datatype=&quot;130&quot; a:size=&quot;24&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;分机&quot; a:datatype=&quot;130&quot; a:size=&quot;4&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;照片&quot; a:datatype=&quot;130&quot; a:size=&quot;255&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;备注&quot; a:datatype=&quot;203&quot; a:size=&quot;0&quot;/>&#13;&#10;    <a:SchemaField a:id=&quot;上级&quot; a:datatype=&quot;3&quot; a:size=&quot;0&quot;/>&#13;&#10;   </a:SchemaRowsource>&#13;&#10;   <a:RecordsetDef a:id=&quot;雇员&quot;>&#13;&#10;    <a:PageField a:id=&quot;雇员ID&quot;/>&#13;&#10;    <a:PageField a:id=&quot;姓氏&quot;/>&#13;&#10;    <a:PageField a:id=&quot;名字&quot;/>&#13;&#10;    <a:PageField a:id=&quot;出生日期&quot;/>&#13;&#10;    <a:PageField a:id=&quot;雇用日期&quot;/>&#13;&#10;    <a:PageField a:id=&quot;地址&quot;/>&#13;&#10;    <a:PageField a:id=&quot;城市&quot;/>&#13;&#10;    <a:PageField a:id=&quot;地区&quot;/>&#13;&#10;    <a:PageField a:id=&quot;邮政编码&quot;/>&#13;&#10;    <a:PageField a:id=&quot;国家&quot;/>&#13;&#10;    <a:PageField a:id=&quot;家庭电话&quot;/>&#13;&#10;    <a:PageField a:id=&quot;分机&quot;/>&#13;&#10;    <a:PageField a:id=&quot;备注&quot;/>&#13;&#10;    <a:PageField a:id=&quot;上级&quot;/>&#13;&#10;    <a:PageField a:id=&quot;尊称&quot;/>&#13;&#10;    <a:PageField a:id=&quot;照片&quot;/>&#13;&#10;    <a:PageField a:id=&quot;职务&quot;/>&#13;&#10;   </a:RecordsetDef>&#13;&#10;   <a:RecordsetDef a:id=&quot;上级_ListRowsource&quot;>&#13;&#10;    <a:PageField a:id=&quot;雇员ID&quot;/>&#13;&#10;    <a:PageField a:id=&quot;姓名&quot;/>&#13;&#10;   </a:RecordsetDef>&#13;&#10;  </a:Datamodel>&#13;&#10; </a:DataSourceControl>&#13;&#10;</xml>"></OBJECT>
<META content="MSHTML 5.00.2920.0" name=GENERATOR>
<STYLE id=MSODAPDEFAULTS type=text/css>.MsoNavRecordCount {
	BORDER-BOTTOM: gainsboro 1px solid; BORDER-LEFT: gainsboro 1px solid; BORDER-RIGHT: gainsboro 1px solid; BORDER-TOP: gainsboro 1px solid; CURSOR: default; FONT-FAMILY: Tahoma; FONT-SIZE: 8pt; OVERFLOW: hidden; PADDING-LEFT: 0px; PADDING-TOP: 0px; POSITION: relative; WIDTH: 100%
}
HR {
	COLOR: black
}
SELECT {
	FONT-FAMILY: Tahoma; FONT-SIZE: 8pt
}
INPUT {
	FONT-FAMILY: Tahoma; FONT-SIZE: 8pt
}
BODY {
	FONT-FAMILY: Tahoma; FONT-SIZE: 10pt
}
MARQUEE {
	FONT-FAMILY: Tahoma; FONT-SIZE: 8pt
}

⌨️ 快捷键说明

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