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

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

?? xinyong1.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 = "信用"
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__MMColParam2
Recordset1__MMColParam2 = "1"
If (Request.QueryString("gidcode") <> "") Then 
  Recordset1__MMColParam2 = Request.QueryString("gidcode")
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, "'", "''") + "' and shouguest = '" + Replace(Recordset1__MMColParam2, "'", "''") + "'  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">信用付款方式結算操作&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>購貨客戶編號</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>
      <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><div align="center"><A HREF="javascript:" onClick="MM_openBrWindow('guestcodeshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "gidcode=" & Recordset1.Fields.Item("shouguest").Value %>','','width=500,height=300')">
        <%content = Server.HTMLEncode((Recordset1.Fields.Item("shouguest").Value))
response.write content%>
        </A> </div></td>
    <td><div align="center"><a href="javascript:" onClick="MM_openBrWindow('xiaoshow.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & Recordset1.Fields.Item("id").Value %>','','width=500,height=300')">
        <%content = Server.HTMLEncode((Recordset1.Fields.Item("xidcode").Value))
response.write content%>
        </a></div></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("huo").Value))
response.write content%>
    </td>
    <td> <div align="center">¥
        <%content = Server.HTMLEncode((Recordset1.Fields.Item("zongjia").Value))
response.write content%>
      </div></td>
    <td width="10%"> 
      <div align="center"><A HREF="xinyongoff.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>
<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">關鍵字查詢</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="客戶編號">
              </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="出庫編號"> </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一区二区三区免费野_久草精品视频
www.日韩av| 久久久午夜电影| 久久婷婷一区二区三区| 一区二区三区欧美久久| 国产大陆精品国产| 欧美一区二区高清| 亚洲精品国产一区二区精华液 | 亚洲精品一区在线观看| 国产欧美久久久精品影院| 香蕉久久一区二区不卡无毒影院| 国产成人综合亚洲91猫咪| 制服视频三区第一页精品| 一区二区三区四区五区视频在线观看| 极品少妇xxxx精品少妇| 欧美日韩国产精选| 一区二区三区小说| 91在线你懂得| 中文一区在线播放| 国产成人av电影在线播放| 欧美一级片在线看| 午夜精品福利视频网站| 欧美亚洲一区二区在线观看| 中文字幕日韩av资源站| 国产成人av一区| 337p日本欧洲亚洲大胆色噜噜| 肉色丝袜一区二区| 欧美一区二区在线不卡| 亚洲高清视频在线| 欧美日韩视频在线第一区 | 不卡一区中文字幕| 国产日韩欧美不卡| 国产精品白丝jk黑袜喷水| 欧美一区二区在线免费观看| 亚洲成人精品一区二区| 欧美日韩一区二区三区高清 | 麻豆一区二区三| 欧美一区二区三区啪啪| 日本不卡123| 欧美va亚洲va国产综合| 黄色小说综合网站| 欧美激情一区在线| 91啦中文在线观看| 亚洲一区在线观看网站| 欧美男男青年gay1069videost| 亚洲一区二区在线播放相泽| 欧美日韩国产bt| 秋霞av亚洲一区二区三| 精品久久久久久久久久久久包黑料 | 国产精品99久久久久久久女警| www国产成人| 国产精品一区一区| 欧美韩国日本一区| 在线观看视频91| 日韩成人精品在线| 日韩国产精品久久| 国产91丝袜在线播放0| 欧美aaaaaa午夜精品| 久久精品理论片| 99在线热播精品免费| 91丨porny丨户外露出| 欧美三级蜜桃2在线观看| 7777精品伊人久久久大香线蕉的 | 欧洲精品视频在线观看| 亚洲综合色婷婷| 精品国产露脸精彩对白| 成人免费视频视频| 亚洲成人你懂的| 国产午夜精品美女毛片视频| 91麻豆精东视频| 久久国产婷婷国产香蕉| 成人免费小视频| 精品久久久久久久一区二区蜜臀| 成人av中文字幕| 国产风韵犹存在线视精品| 欧美高清在线精品一区| 555www色欧美视频| 成人app在线| 捆绑调教一区二区三区| 亚洲女人的天堂| 久久这里只有精品6| 欧美午夜电影一区| 国产99精品国产| 日韩在线一区二区三区| 亚洲人一二三区| 久久嫩草精品久久久久| 精品视频一区 二区 三区| 99综合电影在线视频| 国产伦理精品不卡| 三级影片在线观看欧美日韩一区二区 | 日韩电影在线看| 亚洲视频 欧洲视频| 久久尤物电影视频在线观看| 欧美高清精品3d| 91在线精品一区二区| 国产精品一二三四五| 欧美aⅴ一区二区三区视频| 一区二区三区波多野结衣在线观看| 久久人人超碰精品| 欧美一区二区三区日韩视频| 色www精品视频在线观看| www.久久精品| 波多野结衣中文字幕一区二区三区| 另类小说视频一区二区| 蜜桃视频一区二区三区在线观看 | 亚洲国产精品高清| 国产亚洲精品免费| 精品国产免费一区二区三区四区 | 欧美性一区二区| 色婷婷久久综合| 91视频免费观看| 成人性色生活片| 成人小视频免费在线观看| 精品一区二区三区免费| 激情欧美日韩一区二区| 麻豆精品在线看| 精品一区二区久久| 国产一区二区精品久久91| 国模娜娜一区二区三区| 狠狠久久亚洲欧美| 国产精品99久久久久久久vr | 九九**精品视频免费播放| 婷婷久久综合九色国产成人| 日本成人在线电影网| 日韩精品欧美精品| 精品一区中文字幕| 国产成人精品1024| 99久久精品一区二区| 91麻豆国产自产在线观看| 在线一区二区视频| 在线观看日韩高清av| 欧美日韩国产影片| 欧美一区二区三区在线电影| 日韩精品一区二区在线观看| 久久久亚洲午夜电影| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 成人国产亚洲欧美成人综合网| 成人一级片网址| 99re这里只有精品6| 一本色道久久综合亚洲精品按摩 | 亚洲国产精品一区二区久久恐怖片| 亚洲国产aⅴ天堂久久| 毛片基地黄久久久久久天堂| 国产精品一区二区果冻传媒| 欧美日韩一区成人| 日韩美女一区二区三区| 日本一二三四高清不卡| 亚洲五码中文字幕| 国产综合久久久久影院| 色综合久久九月婷婷色综合| 欧美久久婷婷综合色| 久久久五月婷婷| 亚洲国产精品欧美一二99| 看片的网站亚洲| 91免费观看在线| 日韩欧美高清dvd碟片| 综合亚洲深深色噜噜狠狠网站| 亚洲福利视频三区| 高清在线不卡av| 欧美一级xxx| 亚洲精品视频一区二区| 日本美女视频一区二区| 成人久久视频在线观看| 日韩亚洲电影在线| 一区二区三区在线高清| 国产一区在线视频| 在线播放一区二区三区| 中文字幕一区二区三区在线不卡 | 精品国产sm最大网站免费看| 中文字幕综合网| 国产精品18久久久久| 欧美一区二区三级| 亚洲激情欧美激情| 粉嫩绯色av一区二区在线观看| 欧美一卡二卡三卡四卡| 一区二区三区日韩在线观看| 国产大陆亚洲精品国产| 欧美一级久久久| 肉丝袜脚交视频一区二区| 色婷婷久久综合| 国产精品不卡一区二区三区| 久草精品在线观看| 欧美一区二区三区人| 亚洲国产精品久久人人爱蜜臀 | 国产精品午夜在线| 久久成人羞羞网站| 制服丝袜日韩国产| 亚洲一区在线视频| 在线中文字幕一区二区| 中文字幕在线不卡视频| 国产69精品一区二区亚洲孕妇| 欧美一级视频精品观看| 午夜视频在线观看一区| 欧美日韩精品一区二区三区蜜桃 | 韩国视频一区二区| 日韩欧美国产综合一区 | 天堂成人国产精品一区| 欧美性受极品xxxx喷水| 亚洲国产aⅴ天堂久久| 欧美日韩久久久| 日韩不卡一区二区|