config.asp

来自「asp开发 asp开发 asp开发 asp开发」· ASP 代码 · 共 50 行

ASP
50
字号
<%
Dim GobjConnect
Dim gsConnect
Dim gsPageTemplate
Dim gsPageHeader
Dim gsPageFooter
Dim gsEmbeddedCode
Dim sFont

'Set Font Here
sFont = "Tahoma, Verdana, Arial"

'Set colors here
topcolor  = "orange"    'Table header and footers
linecolor = "orange"	 'thin lines around table header and footer (For MSIE Only)

'Alternating colors (Alternating colors in tables)
ColorONE = "#E9E9E9"
ColorTWO = "#FFFFFF"

'Let Users Add Auctions  (True or False")
bUsersAdd = true

'Show "Add New Item to Auction" Link  (True or False")
bShowAddNewLink = true

'Number of Bids before the item is marked as "HOT"
iHotItemCount = 4

'The path to the auction script
'BE SURE TO INCLUDE A FORWARD SLASH AT THE END OF THE URL!!!!!!!!
sAuctPath = ""

'Maximum number of days that auctions can run
iMaxAuctionDays = 21

'Email address of the auction administrator
sAuctionEmail = "shizhiguo@163.net"

'Path to your database (do not change this unless you change the name or location of your databse)
gsConnect = "Driver={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("XcAuctionLite.mdb")

'System Library Database Configuration Settings 
gsSQLDateDelimiter = Chr(35) 
'gsSQLDateDelimiter = Chr(39) 
'gsSQLWildCardChar = "*"
gsSQLWildCardChar = "%"
giSQLDateAsSystem = True
%>

⌨️ 快捷键说明

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