亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tongxiaofei.asp

?? 本軟件程序是一個基于WEB的進銷存管理平臺,代碼十分完整,無錯!
?? ASP
字號:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
          <%
Set ObjReference = Server.CreateObject("jxc1.check") 
ObjReference.myfiled()
%>
<!--#include file="../../Connections/jxc.asp" -->
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
If (Request.QueryString("time1")   <> "") Then 
  Recordset1__MMColParam = Request.QueryString("time1")  
End If
%>
<%
Dim Recordset1__MMColParam1
Recordset1__MMColParam1 = "1"
If ("作廢" <> "") Then 
  Recordset1__MMColParam1 = "作廢"
End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_jxc_STRING
Recordset1.Source = "SELECT *  FROM xiao  WHERE xidcode LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%' AND zhuangtai = '" + Replace(Recordset1__MMColParam1, "'", "''") + "'  ORDER BY xidcode DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = 5
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<%
'  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables

Dim Recordset1_total
Dim Recordset1_first
Dim Recordset1_last

' set the record count
Recordset1_total = Recordset1.RecordCount

' set the number of rows displayed on this page
If (Recordset1_numRows < 0) Then
  Recordset1_numRows = Recordset1_total
Elseif (Recordset1_numRows = 0) Then
  Recordset1_numRows = 1
End If

' set the first and last displayed record
Recordset1_first = 1
Recordset1_last  = Recordset1_first + Recordset1_numRows - 1

' if we have the correct record count, check the other stats
If (Recordset1_total <> -1) Then
  If (Recordset1_first > Recordset1_total) Then
    Recordset1_first = Recordset1_total
  End If
  If (Recordset1_last > Recordset1_total) Then
    Recordset1_last = Recordset1_total
  End If
  If (Recordset1_numRows > Recordset1_total) Then
    Recordset1_numRows = Recordset1_total
  End If
End If
%>
<%
' *** Recordset Stats: if we don't know the record count, manually count them

If (Recordset1_total = -1) Then

  ' count the total records by iterating through the recordset
  Recordset1_total=0
  While (Not Recordset1.EOF)
    Recordset1_total = Recordset1_total + 1
    Recordset1.MoveNext
  Wend

  ' reset the cursor to the beginning
  If (Recordset1.CursorType > 0) Then
    Recordset1.MoveFirst
  Else
    Recordset1.Requery
  End If

  ' set the number of rows displayed on this page
  If (Recordset1_numRows < 0 Or Recordset1_numRows > Recordset1_total) Then
    Recordset1_numRows = Recordset1_total
  End If

  ' set the first and last displayed record
  Recordset1_first = 1
  Recordset1_last = Recordset1_first + Recordset1_numRows - 1
  
  If (Recordset1_first > Recordset1_total) Then
    Recordset1_first = Recordset1_total
  End If
  If (Recordset1_last > Recordset1_total) Then
    Recordset1_last = Recordset1_total
  End If

End If
%>

<%
Dim MM_paramName 
%>
<%
' *** Move To Record and Go To Record: declare variables

Dim MM_rs
Dim MM_rsCount
Dim MM_size
Dim MM_uniqueCol
Dim MM_offset
Dim MM_atTotal
Dim MM_paramIsDefined

Dim MM_param
Dim MM_index

Set MM_rs    = Recordset1
MM_rsCount   = Recordset1_total
MM_size      = Recordset1_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName <> "") Then
  MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
End If
%>
<%
' *** Move To Record: handle 'index' or 'offset' parameter

if (Not MM_paramIsDefined And MM_rsCount <> 0) then

  ' use index parameter if defined, otherwise use offset parameter
  MM_param = Request.QueryString("index")
  If (MM_param = "") Then
    MM_param = Request.QueryString("offset")
  End If
  If (MM_param <> "") Then
    MM_offset = Int(MM_param)
  End If

  ' if we have a record count, check if we are past the end of the recordset
  If (MM_rsCount <> -1) Then
    If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
      If ((MM_rsCount Mod MM_size) > 0) Then         ' last page not a full repeat region
        MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
      Else
        MM_offset = MM_rsCount - MM_size
      End If
    End If
  End If

  ' move the cursor to the selected record
  MM_index = 0
  While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
    MM_rs.MoveNext
    MM_index = MM_index + 1
  Wend
  If (MM_rs.EOF) Then 
    MM_offset = MM_index  ' set MM_offset to the last possible record
  End If

End If
%>
<%
' *** Move To Record: if we dont know the record count, check the display range

If (MM_rsCount = -1) Then

  ' walk to the end of the display range for this page
  MM_index = MM_offset
  While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
    MM_rs.MoveNext
    MM_index = MM_index + 1
  Wend

  ' if we walked off the end of the recordset, set MM_rsCount and MM_size
  If (MM_rs.EOF) Then
    MM_rsCount = MM_index
    If (MM_size < 0 Or MM_size > MM_rsCount) Then
      MM_size = MM_rsCount
    End If
  End If

  ' if we walked off the end, set the offset based on page size
  If (MM_rs.EOF And Not MM_paramIsDefined) Then
    If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
      If ((MM_rsCount Mod MM_size) > 0) Then
        MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
      Else
        MM_offset = MM_rsCount - MM_size
      End If
    End If
  End If

  ' reset the cursor to the beginning
  If (MM_rs.CursorType > 0) Then
    MM_rs.MoveFirst
  Else
    MM_rs.Requery
  End If

  ' move the cursor to the selected record
  MM_index = 0
  While (Not MM_rs.EOF And MM_index < MM_offset)
    MM_rs.MoveNext
    MM_index = MM_index + 1
  Wend
End If
%>
<%
' *** Move To Record: update recordset stats

' set the first and last displayed record
Recordset1_first = MM_offset + 1
Recordset1_last  = MM_offset + MM_size

If (MM_rsCount <> -1) Then
  If (Recordset1_first > MM_rsCount) Then
    Recordset1_first = MM_rsCount
  End If
  If (Recordset1_last > MM_rsCount) Then
    Recordset1_last = MM_rsCount
  End If
End If

' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters

Dim MM_keepNone
Dim MM_keepURL
Dim MM_keepForm
Dim MM_keepBoth

Dim MM_removeList
Dim MM_item
Dim MM_nextItem

' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then
  MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If

MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""

' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
  End If
Next

' add the Form variables to the MM_keepForm string
For Each MM_item In Request.Form
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
  End If
Next

' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
If (MM_keepBoth <> "") Then 
  MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL <> "")  Then
  MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm <> "") Then
  MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
End If

' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
  If (firstItem <> "") Then
    MM_joinChar = "&"
  Else
    MM_joinChar = ""
  End If
End Function
%>
<%
' *** Move To Record: set the strings for the first, last, next, and previous links

Dim MM_keepMove
Dim MM_moveParam
Dim MM_moveFirst
Dim MM_moveLast
Dim MM_moveNext
Dim MM_movePrev

Dim MM_urlStr
Dim MM_paramList
Dim MM_paramIndex
Dim MM_nextParam

MM_keepMove = MM_keepBoth
MM_moveParam = "index"

' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size > 1) Then
  MM_moveParam = "offset"
  If (MM_keepMove <> "") Then
    MM_paramList = Split(MM_keepMove, "&")
    MM_keepMove = ""
    For MM_paramIndex = 0 To UBound(MM_paramList)
      MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
      If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
        MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
      End If
    Next
    If (MM_keepMove <> "") Then
      MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
    End If
  End If
End If

' set the strings for the move to links
If (MM_keepMove <> "") Then 
  MM_keepMove = MM_keepMove & "&"
End If

MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="

MM_moveFirst = MM_urlStr & "0"
MM_moveLast  = MM_urlStr & "-1"
MM_moveNext  = MM_urlStr & CStr(MM_offset + MM_size)
If (MM_offset - MM_size < 0) Then
  MM_movePrev = MM_urlStr & "0"
Else
  MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
End If
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>www.71base.com</title>
<link href="CSS.CSS" rel="stylesheet" type="text/css">
</head>

<body oncontextmenu="return false" >
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td width="82%"><img src="images/icon-page.gif" width="16" height="15"><font color="#4289F4">作廢出庫記錄統計&gt;&gt;&gt;</font></td>
    <td width="18%"><strong><font color="#6AB5FF"> 
      <input name="imageonclick=&quot;document.execCommand('print','true','true')&quot;" type=image onClick="document.execCommand('print','true','true')" value="打印" src="images/printpage.gif" width="16" height="16">
      &nbsp;&nbsp; 
      <input name="imageonclick=&quot;document.execCommand('saveas','true','.htm')&quot;" type=image onClick="document.execCommand('saveas','true','.htm')" value="保存" src="images/saveas.gif" width="16" height="16">
      </font></strong></td>
  </tr>
  <tr> 
    <td colspan="2">你要統計的時間段是<font color="#FF0000"><%= Recordset1__MMColParam %><font color="#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;包括記錄 <%=(Recordset1_first)%> 到 <%=(Recordset1_last)%> (總共 <%=(Recordset1_total)%> 個記錄) </font></font></td>
  </tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  
  <tr>
    <td><table width="99%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#0099FF">
        <% 
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF)) 
%>
        <tr bgcolor="#F2F2F2"> 
          <td width="11%"><div align="right">出庫ID:</div></td>
          <td width="16%">&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("xidcode").Value))
response.write content%>
          </td>
          <td width="13%"><div align="right">出庫貨品:</div></td>
          <td width="28%">&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("huo").Value))
response.write content%>
          </td>
          <td width="13%"><div align="right">數量:</div></td>
          <td width="19%">&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("shu").Value))
response.write content%>
            <%content = Server.HTMLEncode((Recordset1.Fields.Item("liang").Value))
response.write content%>
          </td>
        </tr>
        <tr bgcolor="#FFFFFF"> 
          <td><div align="right">貨品ID:</div></td>
          <td>&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("hidcode").Value))
response.write content%>
          </td>
          <td><div align="right">出庫時間:</div></td>
          <td>&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("date").Value))
response.write content%>
          </td>
          <td><div align="right">價格:</div></td>
          <td>&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("jiage").Value))
response.write content%>
            元</td>
        </tr>
        <tr bgcolor="#FFFFFF"> 
          <td><div align="right">庫名:</div></td>
          <td>&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("ku").Value))
response.write content%>
          </td>
          <td><div align="right">提貨人:</div></td>
          <td>&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("shouguest").Value))
response.write content%>
          </td>
          <td><div align="right">發貨人:</div></td>
          <td>&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("man").Value))
response.write content%>
          </td>
        </tr>
        <tr bgcolor="#FFFFFF"> 
          <td height="15"> 
            <div align="right">總價格:</div></td>
          <td colspan="5">&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("zongjia").Value))
response.write content%>
            <div align="right"></div>
            <div align="right"></div></td>
        </tr>
        <tr bgcolor="#FFFFFF"> 
          <td colspan="6">&nbsp;</td>
        </tr>
        <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  Recordset1.MoveNext()
Wend
%>
      </table></td>
  </tr>
</table>

<table border="0" width="62%" align="left">
  <tr> 
    <td width="23%" align="center"> <% If MM_offset <> 0 Then %>
      <a href="<%=MM_moveFirst%>">第一頁</a> 
      <% End If ' end MM_offset <> 0 %> </td>
    <td width="31%" align="center"> <% If MM_offset <> 0 Then %>
      <a href="<%=MM_movePrev%>">前一頁</a> 
      <% End If ' end MM_offset <> 0 %> </td>
    <td width="23%" align="center"> <% If Not MM_atTotal Then %>
      <a href="<%=MM_moveNext%>">下一頁</a> 
      <% End If ' end Not MM_atTotal %> </td>
    <td width="23%" align="center"> <% If Not MM_atTotal Then %>
      <a href="<%=MM_moveLast%>">最后一頁</a> 
      <% End If ' end Not MM_atTotal %> </td>
  </tr>
</table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99热这里都是精品| 亚洲三级免费电影| 欧美mv日韩mv国产网站app| 欧美日韩一区二区电影| 一本到不卡精品视频在线观看| av网站免费线看精品| 不卡的电影网站| 99久久综合国产精品| 99久久精品99国产精品| 91久久线看在观草草青青| 日本韩国欧美三级| 欧美三级电影一区| 日韩亚洲电影在线| 精品欧美久久久| 久久久精品蜜桃| 国产精品理伦片| 亚洲精品成a人| 亚洲成av人片| 精品中文字幕一区二区小辣椒| 韩国视频一区二区| 国内成人精品2018免费看| 国产成人精品1024| 91美女片黄在线观看| 欧美日韩精品一二三区| 日韩欧美一级特黄在线播放| 久久精品一区二区三区不卡| 国产精品日韩精品欧美在线| 亚洲精品成人在线| 日本成人在线网站| 国产福利精品导航| 色欧美88888久久久久久影院| 中文av一区二区| 亚洲美女视频一区| 日本最新不卡在线| 国产经典欧美精品| 91豆麻精品91久久久久久| 日韩欧美国产综合一区 | 91麻豆精品视频| 欧美人妖巨大在线| 久久久精品国产免费观看同学| 专区另类欧美日韩| 日本成人中文字幕在线视频| 国产.精品.日韩.另类.中文.在线.播放| 99re热这里只有精品视频| 欧美日韩中文字幕一区| 久久精品视频免费观看| 一区二区三区av电影 | 欧美日韩免费一区二区三区| 欧美videossexotv100| 国产精品免费av| 日韩不卡一区二区| 99精品欧美一区二区三区小说 | 91精品国产全国免费观看| 国产日韩欧美电影| 视频一区在线播放| 99久久99久久精品免费观看 | 午夜久久久影院| 成人性生交大片免费看中文网站 | 亚洲精品日日夜夜| 国内成人精品2018免费看| 欧美亚洲日本国产| 国产精品午夜春色av| 青草国产精品久久久久久| 91免费视频大全| 欧美精品一区二区久久婷婷| 亚洲一区自拍偷拍| av电影天堂一区二区在线观看| 欧美一区二区三区在线观看视频| 中文字幕日韩精品一区| 狠狠色伊人亚洲综合成人| 欧美日韩亚洲综合一区| 一区精品在线播放| 国产一区二区三区四区五区入口| 欧美男人的天堂一二区| 亚洲欧美偷拍三级| 大胆欧美人体老妇| 久久婷婷国产综合精品青草 | 欧美三级中文字幕| 亚洲欧美综合在线精品| 国产高清在线精品| 精品理论电影在线观看| 日日夜夜精品免费视频| 欧美性视频一区二区三区| 国产精品成人在线观看| 国产精品一二三区| 精品国产乱码久久久久久老虎| 亚洲一卡二卡三卡四卡| 一本大道久久a久久精二百| 国产精品无人区| 国产精品99久久久久久久vr| 精品少妇一区二区三区| 日韩成人免费电影| 欧美天堂一区二区三区| 亚洲老妇xxxxxx| 99国产一区二区三精品乱码| 久久精品综合网| 国产91精品入口| 国产日韩欧美a| 成人免费视频网站在线观看| 国产亚洲精品资源在线26u| 国产一区在线看| 久久嫩草精品久久久久| 国产精品一区二区久激情瑜伽| 久久影院午夜片一区| 国产在线看一区| 久久久无码精品亚洲日韩按摩| 国产一区二区三区免费在线观看| 精品国产91久久久久久久妲己| 久久99精品久久久久久久久久久久| 日韩欧美二区三区| 激情深爱一区二区| 久久精品视频网| caoporn国产精品| 成人性生交大片免费看视频在线 | 欧美高清视频不卡网| 日韩av一区二区在线影视| 4438成人网| 久久国产麻豆精品| 久久麻豆一区二区| 风间由美中文字幕在线看视频国产欧美| 国产人久久人人人人爽| av一二三不卡影片| 樱桃视频在线观看一区| 欧美日韩一区小说| 久久99国产精品久久99| 欧美韩日一区二区三区四区| 91网站在线播放| 亚洲va国产va欧美va观看| 日韩欧美国产不卡| 成人午夜视频福利| 一区二区三区鲁丝不卡| 欧美电影一区二区| 国产大片一区二区| 亚洲精品成人天堂一二三| 欧美一级久久久| 成人网页在线观看| 亚洲小说春色综合另类电影| 日韩精品中文字幕一区二区三区| 国产成人av一区二区三区在线| 亚洲欧美日韩电影| 7777女厕盗摄久久久| 国产成人免费视频一区| 一区二区三区日韩精品视频| 日韩一区二区电影网| 波多野结衣一区二区三区| 五月激情丁香一区二区三区| 久久久久久一二三区| 在线观看日韩av先锋影音电影院| 蜜臀a∨国产成人精品| 中文字幕一区二| 日韩一级高清毛片| 国产三级欧美三级日产三级99 | 精品日韩一区二区| 99国产精品久| 蜜桃久久精品一区二区| 亚洲品质自拍视频网站| 欧美刺激脚交jootjob| 色综合久久中文综合久久97| 久久国产人妖系列| 亚洲国产精品视频| 国产色产综合产在线视频| 这里只有精品99re| av一本久道久久综合久久鬼色| 青青草国产成人99久久| 亚洲激情第一区| 久久久亚洲精品一区二区三区| 欧美在线不卡视频| 成人免费福利片| 久草在线在线精品观看| 亚洲一区在线视频观看| 中文字幕亚洲电影| 久久精品欧美一区二区三区麻豆| 欧美色图在线观看| 99精品黄色片免费大全| 国产99久久久精品| 精品在线视频一区| 日韩精品乱码av一区二区| 亚洲日本va午夜在线影院| 久久久久久97三级| 日韩视频123| 欧美日韩高清一区二区不卡| 一本大道久久a久久综合婷婷| 国产精品亚洲第一 | 欧美成人一级视频| 欧美肥妇毛茸茸| 欧美日韩中文字幕一区二区| 91在线观看免费视频| 成人免费看的视频| 国产久卡久卡久卡久卡视频精品| 青青草97国产精品免费观看无弹窗版| 亚洲国产视频一区二区| 一区二区三区中文字幕精品精品 | 秋霞电影一区二区| 亚洲aaa精品| 一区二区免费看| 亚洲一区二区三区四区中文字幕 | 国产激情视频一区二区在线观看| 久久精品国产亚洲aⅴ| 日本中文在线一区| 日本欧美在线看|