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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? xinyong.asp

?? 本軟件程序是一個(gè)基于WEB的進(jìn)銷存管理平臺(tái),代碼十分完整,無錯(cuò)!
?? ASP
字號(hào):

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>

          <%
Set ObjReference = Server.CreateObject("jxc1.check") 
ObjReference.myfilee()
%>
<!--#include file="../../Connections/jxc.asp" -->
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "信用"
If (Request("MM_EmptyValue") <> "") Then 
  Recordset1__MMColParam = Request("MM_EmptyValue")
End If
%>
<%
Dim Recordset1__MMColParam1
Recordset1__MMColParam1 = "有效"
If (Request("MM_EmptyValue") <> "") Then 
  Recordset1__MMColParam1 = Request("MM_EmptyValue")
End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_jxc_STRING
Recordset1.Source = "SELECT *  FROM xiao  WHERE fukuanfangshi = '" + Replace(Recordset1__MMColParam, "'", "''") + "' and zhuangtai = '" + Replace(Recordset1__MMColParam1, "'", "''") + "'  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 = 16
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<%
Dim MM_paramName 
%>
<%
'  *** 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
%>


<%
' *** 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 colspan="2"><img src="images/icon-page.gif" width="16" height="15"><font color="#3399FF">信用付款方式結(jié)算操作&gt;&gt;</font></td>
    <td><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="3"><hr width="100%" size="1" noshade></td>
  </tr>
  <tr> 
    <td width="41%"><p><font color="#4289F4">&nbsp;<img src="images/email1.gif" width="24" height="11"><a href="xinyong.asp">出庫信用操作列表</a></font><br>
      </p></td>
    <td width="28%">&nbsp;</td>
    <td width="31%"><font color="#4289F4"><img src="images/email1.gif" width="24" height="11"><a href="xinyongjin.asp">入庫信用操作列表</a></font></td>
  </tr>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#0099FF">
  <tr bgcolor="#F2F2F2"> 
    <td height="17"> <div align="center"><strong>購貨客戶編號(hào)</strong></div></td>
    <td><div align="center"><strong>出庫編號(hào)</strong></div></td>
    <td> <div align="center"><strong>貨品編號(hào)</strong></div></td>
    <td><div align="center"><strong>貨品</strong> </div></td>
    <td><div align="center"><strong>信用金額</strong> </div>
      <div align="center"></div></td>
    <td> <div align="center"><strong>操作</strong></div></td>
  </tr>
  <% 
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF)) 
%>
  <tr bgcolor="#FFFFFF"> 
    <td width="18%"><div align="center"><A HREF="javascript:" onClick="MM_openBrWindow('guestcodeshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "gidcode=" & Recordset1.Fields.Item("shouguest").Value %>','','scrollbars=yes,width=500,height=300')">
      <%content = Server.HTMLEncode((Recordset1.Fields.Item("shouguest").Value))
response.write content%>
        </A> </div></td>
    <td width="16%"><div align="center"><a href="javascript:" onClick="MM_openBrWindow('xiaoshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & Recordset1.Fields.Item("id").Value %>','','scrollbars=yes,width=500,height=300')">
      <%content = Server.HTMLEncode((Recordset1.Fields.Item("xidcode").Value))
response.write content%>
        </a></div></td>
    <td width="16%"><div align="center"><a href="javascript:" onClick="MM_openBrWindow('goodscodeshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "hidcode=" & Recordset1.Fields.Item("hidcode").Value %>','','scrollbars=yes,width=500,height=300')">
      <%content = Server.HTMLEncode((Recordset1.Fields.Item("hidcode").Value))
response.write content%>
        </a></div></td>
    <td width="23%">&nbsp;<%content = Server.HTMLEncode((Recordset1.Fields.Item("huo").Value))
response.write content%>
    </td>
    <td width="16%"> 
      <div align="center">¥<%content = Server.HTMLEncode((Recordset1.Fields.Item("zongjia").Value))
response.write content%>
      </div></td>
    <td width="11%"> 
      <div align="center"><A HREF="xinyongoff.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & Recordset1.Fields.Item("id").Value %>">結(jié)帳</A></div></td>
  </tr>
  <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  Recordset1.MoveNext()
Wend
%>
</table>
<table width="30%" cellpadding="0">
  <tr> 
    <td width="24%"><div align="center"><strong><A HREF="<%=MM_moveFirst%>">首頁</A></strong></div></td>
    <td width="27%"><div align="center"><strong><A HREF="<%=MM_movePrev%>">前頁</A></strong></div></td>
    <td width="22%"><div align="center"><strong><A HREF="<%=MM_moveNext%>">下頁</A></strong></div></td>
    <td width="27%"><div align="center"><strong><A HREF="<%=MM_moveLast%>">尾頁</A></strong></div></td>
  </tr>
</table>
<table width="95%" align="center" cellpadding="0">
  <tr> 
    <td width="58%" height="26"><form name="form2" method="get" action="xinyong1.asp">
        <table width="100%" cellpadding="0">
          <tr> 
            <td width="46%"><div align="right">關(guān)鍵字查詢</div></td>
            <td width="37%"><div align="right">
                <input name="gidcode" type="text" value="k"size="15">
              </div></td>
            <td width="17%"> <div align="right">
                <input type="submit" name="Submit" value="客戶編號(hào)">
              </div></td>
          </tr>
        </table>
      </form></td>
    <td width="42%"><form name="form4" method="get" action="xinyong2.asp">
        <table width="100%" cellpadding="0">
          <tr> 
            <td width="27%"><div align="right"></div></td>
            <td width="40%"><input name="xidcode" type="text" value="x"size="15"></td>
            <td width="33%"> <input type="submit" name="Submit3" value="出庫編號(hào)"> </td>
          </tr>
        </table>
      </form></td>
  </tr>
</table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲视频在线一区观看| 亚洲一区二区三区国产| 欧美日韩三级在线| 成人午夜免费电影| 蜜臀av一级做a爰片久久| 亚洲激情图片一区| 中文字幕巨乱亚洲| 2023国产精品自拍| 欧美日韩国产美女| 在线观看免费亚洲| av在线免费不卡| 国产一区二区不卡老阿姨| 日韩精品一二区| 一区二区成人在线观看| 中文字幕亚洲一区二区va在线| 欧美精品一区在线观看| 欧美美女bb生活片| 欧美天堂一区二区三区| 972aa.com艺术欧美| 国产凹凸在线观看一区二区| 久久99久久99精品免视看婷婷 | 欧美日韩日本视频| 色综合激情久久| www.日韩精品| 岛国一区二区三区| 国产91丝袜在线播放0| 韩日欧美一区二区三区| 久久精品72免费观看| 日韩av一级片| 蜜臀av在线播放一区二区三区| 天堂av在线一区| 日本欧美一区二区三区乱码| 日韩精品乱码免费| 青青草视频一区| 捆绑调教美女网站视频一区| 美国精品在线观看| 国产一区视频导航| 国产精品原创巨作av| 国产69精品久久777的优势| 国产sm精品调教视频网站| 国产成人在线视频网站| 成人午夜电影小说| 91片在线免费观看| 欧美影院一区二区三区| 欧美日韩精品免费观看视频| 欧美精品第1页| 日韩欧美国产午夜精品| 欧美sm美女调教| 久久精品一区二区三区不卡 | 久久99精品国产.久久久久| 黑人精品欧美一区二区蜜桃| 国产成人鲁色资源国产91色综| 成人性生交大片免费看中文 | 日本 国产 欧美色综合| 久久国产精品99久久久久久老狼| 精品一区二区三区免费观看| 国产一区二区影院| 91美女片黄在线观看91美女| 欧美在线影院一区二区| 欧美一级理论性理论a| 国产日韩欧美在线一区| 一区二区三区四区视频精品免费 | 美女在线一区二区| 粉嫩aⅴ一区二区三区四区五区| 97se亚洲国产综合自在线不卡| 欧美日韩在线观看一区二区| 欧美xxx久久| 日韩一区日韩二区| 视频精品一区二区| 国产一区91精品张津瑜| 99久久伊人网影院| 欧美精品一级二级三级| 国产午夜精品一区二区| 亚洲午夜精品一区二区三区他趣| 老司机午夜精品99久久| 成人app软件下载大全免费| 欧美三级视频在线观看| 久久精品免费在线观看| 亚洲午夜羞羞片| 国产精品资源在线| 欧美日韩日日骚| 国产精品素人视频| 男人操女人的视频在线观看欧美| 国产成人av一区二区三区在线观看| 91啪亚洲精品| 久久久久国产精品人| 午夜国产不卡在线观看视频| 国产激情一区二区三区| 欧美日韩高清一区二区| 欧美国产成人精品| 美女视频黄免费的久久| 色欧美88888久久久久久影院| 久久亚洲综合av| 午夜影院在线观看欧美| 成人av在线影院| 日韩精品一区二| 亚洲风情在线资源站| 国产成人免费视频| 日韩一级视频免费观看在线| 亚洲欧美乱综合| 国产成人精品www牛牛影视| 日韩欧美综合一区| 亚洲福中文字幕伊人影院| 成av人片一区二区| 精品国产免费视频| 天堂在线一区二区| 色婷婷国产精品| 亚洲国产成人午夜在线一区 | av一区二区不卡| 2021中文字幕一区亚洲| 美国一区二区三区在线播放| 欧洲av一区二区嗯嗯嗯啊| 国产欧美精品一区二区色综合朱莉 | 欧美大尺度电影在线| 亚洲国产视频网站| 在线观看一区不卡| 亚洲人成网站影音先锋播放| 成人免费毛片a| 国产婷婷色一区二区三区在线| 美女视频黄a大片欧美| 91精品国产综合久久国产大片| 亚洲一区二区三区视频在线| 色噜噜狠狠一区二区三区果冻| 中文字幕av一区 二区| 国产精品538一区二区在线| 日韩欧美高清在线| 蜜臀精品一区二区三区在线观看 | 国产成人自拍在线| 久久这里都是精品| 国产在线一区二区| 久久久久久免费毛片精品| 国产一区欧美日韩| 久久蜜桃香蕉精品一区二区三区| 久88久久88久久久| 日韩一区二区三区精品视频| 蜜桃视频第一区免费观看| 欧美一区二区在线视频| 七七婷婷婷婷精品国产| 欧美一区二区在线免费播放| 捆绑调教美女网站视频一区| 精品国产sm最大网站| 国产原创一区二区三区| 国产欧美一区二区精品婷婷| 国产成人av福利| 亚洲欧洲av色图| 在线视频观看一区| 午夜伊人狠狠久久| 日韩欧美在线影院| 国产一区视频在线看| 国产精品三级久久久久三级| www.亚洲免费av| 亚洲国产精品久久人人爱蜜臀| 欧美日韩美少妇| 麻豆精品久久久| 欧美国产日韩亚洲一区| 91美女蜜桃在线| 午夜日韩在线观看| 久久综合久久综合久久| 成人黄页在线观看| 亚洲精品国产a| 日韩一区二区在线看| 国产91精品欧美| 一区二区三区在线观看欧美| 日韩一区二区三区电影| 国产成人精品免费看| 亚洲最大色网站| 精品久久久久一区二区国产| 99天天综合性| 婷婷成人综合网| 国产日韩影视精品| 在线精品国精品国产尤物884a| 日本va欧美va瓶| 1区2区3区国产精品| 91精品在线免费观看| 国产aⅴ精品一区二区三区色成熟| 亚洲伦在线观看| 精品国产一区二区三区久久久蜜月| 成人高清视频免费观看| 日韩专区在线视频| 国产精品国产自产拍高清av| 欧美一卡二卡在线观看| 91在线播放网址| 看国产成人h片视频| 亚洲嫩草精品久久| 26uuu精品一区二区在线观看| 色94色欧美sute亚洲线路二| 国产一区啦啦啦在线观看| 亚洲在线视频一区| 欧美激情在线免费观看| 91麻豆精品国产91久久久资源速度 | 欧美一级一级性生活免费录像| www.亚洲在线| 精品一区二区三区在线视频| 亚洲精品中文字幕乱码三区 | 亚洲人成7777| 久久综合九色综合97_久久久| 欧美亚洲国产怡红院影院| 国产精品一区二区三区99| 午夜av一区二区| 一级女性全黄久久生活片免费|