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

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

?? jinlist1.asp

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

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_jxc_STRING
Recordset1.Source = "SELECT * FROM jin WHERE hidcode = '" + Replace(Recordset1__MMColParam, "'", "''") + "' ORDER BY id DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = 18
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
%>
<%
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>
<title>www.71base.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="CSS.CSS" rel="stylesheet" type="text/css">

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body oncontextmenu="return false" >
<table width="100%" cellpadding="0">
  <tr> 
    <td width="40%"><img src="images/icon-page.gif" width="16" height="15"><font color="#B5B5FF">入庫記錄查詢&gt;&gt;按進貨編號查詢結果</font></td>
    <td width="41%"><div align="right"><font color="#B5B5FF"><A HREF="print/exclejinlist1.asp?<%= MM_keepURL %>" target="_blank"><img src="images/excle.png" width="16" height="16" border="0"></A></font>&nbsp;&nbsp;&nbsp;&nbsp;</div></td>
    <td width="19%"><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>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#6699FF">
  <tr> 
    <td> 
      <table width="100%" border="0" cellpadding="0" cellspacing="1">
        <tr bgcolor="#F2F2F2"> 
          <td height="17"> <div align="center"><strong>入庫編號</strong></div></td>
          <td> <div align="center"><strong>貨品</strong></div></td>
          <td> <div align="center"><strong>貨品編號</strong></div></td>
          <td> <div align="center"><strong>數量</strong></div></td>
          <td> <div align="center"><strong>庫</strong></div></td>
          <td> <div align="center"><strong>詳細頁</strong></div></td>
          <td> <div align="center"><strong>操作</strong></div></td>
        </tr>
        <% 
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF)) 
%>
        <tr bgcolor="#FFFFFF">
          <td> <div align="center"><A HREF="javascript:" onClick="MM_openBrWindow('jinshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & Recordset1.Fields.Item("id").Value %>','','width=500,height=300')">
              <%content = Server.HTMLEncode((Recordset1.Fields.Item("jidcode").Value))
response.write content%>
              </A></div></td>
          <td>&nbsp;&nbsp;
            <%content = Server.HTMLEncode((Recordset1.Fields.Item("huo").Value))
response.write content%>
          </td>
          <td> <div align="center"><A HREF="javascript:" onClick="MM_openBrWindow('goodscodeshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "hidcode=" & Recordset1.Fields.Item("hidcode").Value %>','','width=500,height=300')">
              <%content = Server.HTMLEncode((Recordset1.Fields.Item("hidcode").Value))
response.write content%>
              </A></div></td>
          <td>&nbsp;
            <%content = Server.HTMLEncode((Recordset1.Fields.Item("shu").Value))
response.write content%>
            <%content = Server.HTMLEncode((Recordset1.Fields.Item("liang").Value))
response.write content%>
          </td>
          <td>&nbsp;&nbsp;
            <%content = Server.HTMLEncode((Recordset1.Fields.Item("ku").Value))
response.write content%>
          </td>
          <td width="9%"> 
            <div align="center"><A HREF="jinshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & Recordset1.Fields.Item("id").Value %>">查看</A></div></td>
          <td width="9%"> 
            <div align="center"><A HREF="jinmodify.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & Recordset1.Fields.Item("id").Value %>">作廢</A></div></td>
        </tr>
        <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  Recordset1.MoveNext()
Wend
%>
      </table></td>
  </tr>
</table>
<table width="30%" cellpadding="0">
  <tr> 
    <td><div align="center"><A HREF="<%=MM_moveFirst%>"><strong>首頁</strong></A></div></td>
    <td><div align="center"><A HREF="<%=MM_movePrev%>"><strong>前頁</strong></A></div></td>
    <td><div align="center"><A HREF="<%=MM_moveNext%>"><strong>下頁</strong></A></div></td>
    <td><div align="center"><A HREF="<%=MM_moveLast%>"><strong>尾頁</strong></A></div></td>
  </tr>
</table>
<table width="95%" align="center" cellpadding="0">
  <tr> 
    <td width="45%" height="26"><form name="form2" method="get" action="jinlist1.asp">
        <table width="100%" cellpadding="0">
          <tr> 
            <td width="46%"><div align="right">查詢關鍵字<br>
              </div></td>
            <td width="24%"><input type="text" name="hidcode"size="15"></td>
            <td width="30%"> <input type="submit" name="Submit" value="貨編"></td>
          </tr>
        </table>
      </form></td>
    <td width="29%"><form name="form3" method="get" action="jinlist2.asp">
        <table width="100%" cellpadding="0">
          <tr> 
            <td width="25%"><div align="right"><br>
              </div></td>
            <td width="42%"><input type="text" name="huo"size="15"></td>
            <td width="33%"> <input type="submit" name="Submit2" value="貨名"> </td>
          </tr>
        </table>
      </form></td>
    <td width="26%"><form name="form4" method="get" action="jinlist3.asp">
        <table width="100%" cellpadding="0">
          <tr> 
            <td width="27%"><div align="right"><br>

              </div></td>
            <td width="41%"><input type="text" name="jidcode"size="15"></td>
            <td width="32%"> <input type="submit" name="Submit3" value="進編"> </td>
          </tr>
        </table>
      </form></td>
  </tr>
</table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一二三四区| 欧美丰满高潮xxxx喷水动漫 | 91精品国产综合久久久久久久 | 欧美一区二区三区日韩视频| 亚洲国产高清aⅴ视频| 亚洲国产精品久久人人爱蜜臀| 国产成人午夜精品影院观看视频 | 亚洲欧美日韩久久| 国产一二三精品| 欧美精品乱人伦久久久久久| 国产精品拍天天在线| 精品亚洲免费视频| 欧美日韩一区二区电影| 1024成人网| 成人永久免费视频| 久久综合九色综合97婷婷| 亚洲成人精品一区| 91在线观看污| 国产精品毛片无遮挡高清| 一区二区三区色| 一本色道a无线码一区v| 国产精品视频免费看| 韩国毛片一区二区三区| 精品少妇一区二区三区在线视频| 午夜欧美2019年伦理| 在线视频一区二区三区| 亚洲欧美aⅴ...| 91麻豆免费视频| 亚洲天堂久久久久久久| 成人手机电影网| 国产精品色呦呦| 成人黄色大片在线观看| 国产精品免费视频一区| 9人人澡人人爽人人精品| 欧美国产丝袜视频| 成人午夜免费视频| 日韩美女视频一区二区| 色一情一乱一乱一91av| 亚洲主播在线播放| 国产亚洲一区二区三区在线观看| 国内精品国产三级国产a久久| 精品国产乱码久久久久久影片| 久久97超碰色| 久久久国际精品| 成人天堂资源www在线| 亚洲视频每日更新| 欧美日韩一级片在线观看| 午夜亚洲国产au精品一区二区| 欧美男男青年gay1069videost| 日日欢夜夜爽一区| 精品国产一二三| caoporn国产精品| 一区二区欧美精品| 欧美一级一区二区| 国产精品一区一区三区| 亚洲日本在线视频观看| 欧美吻胸吃奶大尺度电影| 青娱乐精品在线视频| 国产亚洲一区二区三区| 在线观看91视频| 美女尤物国产一区| 中文字幕人成不卡一区| 欧美影院一区二区| 国内精品第一页| 亚洲欧美日韩综合aⅴ视频| 制服丝袜国产精品| 国产一区二区三区电影在线观看| 亚洲国产精品精华液ab| 欧美色网一区二区| 国产乱码字幕精品高清av| 亚洲美女偷拍久久| 一区二区三区中文字幕精品精品 | 激情综合网av| 亚洲免费看黄网站| 亚洲精品一区二区三区香蕉| 91最新地址在线播放| 免费日韩伦理电影| 中文字幕日韩一区二区| 欧美成人官网二区| 欧美在线观看你懂的| 国产一区二区三区国产| 亚洲aaa精品| 亚洲品质自拍视频网站| 精品99一区二区三区| 在线看不卡av| 国产激情一区二区三区四区| 亚洲午夜精品17c| 国产精品乱码一区二区三区软件 | 亚洲va国产va欧美va观看| 国产亚洲精品精华液| 欧美剧在线免费观看网站| av不卡一区二区三区| 韩国av一区二区三区| 午夜精品福利一区二区三区av| 国产欧美一区二区三区沐欲| 777精品伊人久久久久大香线蕉| 成人国产电影网| 久久99国产精品免费| 91在线观看美女| 国产福利一区二区三区| 欧美96一区二区免费视频| 一片黄亚洲嫩模| 亚洲精品免费一二三区| 亚洲国产精品精华液ab| 国产亚洲精品久| 久久久久88色偷偷免费| 精品美女在线观看| 欧美一区二区日韩| 欧美一区二区观看视频| 欧美天堂一区二区三区| 在线免费观看成人短视频| av爱爱亚洲一区| 91亚洲大成网污www| 99久久er热在这里只有精品66| 国产成人精品免费在线| 国产成人久久精品77777最新版本| 国产伦精品一区二区三区在线观看 | 欧美激情综合在线| 中文字幕欧美日韩一区| 国产欧美一区二区精品秋霞影院| 精品国产百合女同互慰| 精品粉嫩超白一线天av| 久久日韩精品一区二区五区| 精品国产乱码久久久久久图片| 亚洲精品一线二线三线无人区| 欧美电视剧在线看免费| 亚洲第一搞黄网站| 日韩影院精彩在线| 久久精品国产精品亚洲精品| 精品在线一区二区| 国产激情一区二区三区四区| 懂色av一区二区三区免费看| 不卡av在线免费观看| 91福利视频网站| 日韩亚洲欧美高清| 国产日韩欧美一区二区三区综合| 国产精品热久久久久夜色精品三区| 国产精品网站在线| 亚洲综合自拍偷拍| 精品在线视频一区| 91在线你懂得| 91麻豆精品久久久久蜜臀| 久久久久久久性| 一区二区三区中文字幕在线观看| 日本一不卡视频| 国产999精品久久久久久| 色悠久久久久综合欧美99| 欧美一区二区三区视频| 国产精品久久毛片| 亚洲成a人v欧美综合天堂下载| 久久成人免费日本黄色| 99精品视频在线免费观看| 欧美日韩亚洲综合一区 | 在线观看一区日韩| 日韩精品中文字幕在线不卡尤物 | 日本韩国欧美一区| 日韩视频在线观看一区二区| 日本一区二区动态图| 婷婷一区二区三区| 播五月开心婷婷综合| 日韩视频一区二区| 亚洲另类春色校园小说| 韩国v欧美v日本v亚洲v| 欧美中文字幕不卡| 国产欧美日韩卡一| 五月婷婷激情综合网| 成人国产精品免费网站| 日韩三区在线观看| 亚洲欧美日韩成人高清在线一区| 美女视频一区在线观看| 色哟哟一区二区在线观看| 欧美精品一区二区三区蜜臀| 亚洲成人中文在线| 波多野结衣91| 久久伊99综合婷婷久久伊| 一区二区三区小说| 播五月开心婷婷综合| 国产亚洲人成网站| 精品亚洲免费视频| 欧美日韩国产小视频在线观看| 国产精品麻豆网站| 国产精品主播直播| 欧美一卡二卡在线| 亚洲va韩国va欧美va| 欧美伊人久久大香线蕉综合69| 日本一区二区动态图| 国产.精品.日韩.另类.中文.在线.播放| 欧美乱妇一区二区三区不卡视频| 亚洲欧美视频在线观看视频| 国产盗摄精品一区二区三区在线 | 免费精品99久久国产综合精品| 91激情在线视频| ...av二区三区久久精品| 国产99精品视频| 欧美国产精品专区| 国产精品88888| 日本一区二区免费在线| 国内国产精品久久| 精品国产亚洲一区二区三区在线观看| 日韩中文字幕一区二区三区|