|
 |
<%
Dim IsSearch
IsSearch = Trim(Request("IsSearch"))
Dim buyer
buyer = Trim(Request("buyer"))
%>
<%'Start ========================================================================================================================%>
<%
Dim objCommonList
Dim objListProperty
Set objCommonList = New CommonListClass
Set objListProperty = New CommonListProperty
IF IsSearch = "true" Then
objListProperty.Query = funcSearchListQuery(buyer)
Else
objListProperty.Query = funcListQuery() '//Query
End If
objListProperty.PageRowSize = 15 '//ÆäÀÌÁö »çÀÌÁî
objListProperty.ColumnTitle = Array("","¿¹¾àÀÚ¸í","Ãâ¹ß°øÇ×","µµÂø°øÇ×","Ãâ¹ßÀÏ","µµÂøÀÏ", "¼ºÀÎ", "À̸ÞÀÏ","ÀüÈ","¿¹¾àÀÏ","Status") '// ù ÀÚ¸®´Â Ç×»ó Key°¡ µé¾î°¨
objListProperty.ColumnTableWidth = "100%"
objListProperty.ColumnAlign = Array("","center","center","center","center","center","center","center","center","center","center") '//Key¸¦ À§ÇØ ÇÒ´çµÈ ÀÚ¸®À̹ǷΠ...
objListProperty.TDSize = Array("","10%","12%","12%","11%","11%","5%","15%","10%","15%","5%") '//¹øÈ£¿À» À§ÇØ Ç×»ó Àüü 95%·Î À¯Áö
objListProperty.FontColor = Array("","#426BB5","#333333","#333333","#333333","#333333","#333333","#333333","#333333","#333333","#333333")
objListProperty.AnchorColumn = 1'//Link¸¦ °É¾îÁÙ ¹è¿¹øÈ£... 0ºÎÅÍ ½ÃÀÛÇÔ.
objListProperty.DisplayNoMsg = "No Result" '// Result°¡ ¾øÀ» ¶§ ¸Þ½ÃÁö
IF Trim(Request("IsSearch")) = "true" Then
objListProperty.AnchorURL = "./order_ticket_detail.asp?IsSearch="&Request("IsSearch")&"&buyer="&buyer&"&idx="
objListProperty.CurrentURL = "./order_ticket.asp?IsSearch="&Request("IsSearch")&"&buyer="&buyer
Else
objListProperty.AnchorURL = "./order_ticket_detail.asp?idx="
objListProperty.CurrentURL = "./order_ticket.asp"
End IF
objCommonList.funcAddProperty objListProperty
Set objListProperty = Nothing
Set objCommonList = Nothing
%>
|
<%'End =========================================================================================================================%>
|
 |
|