asp数字分页新
2.asp
---------------
<!--#include file="conn.asp"-->
<table width="100%" align="center" cellpadding="0" cellspacing="0" border="1" style="color:#000099;
border-color:#330066;">
<tr>
<td width="28%" align="left">药名 </td>
<td width="17%" align="center">已卖出 </td>
<td width="18%" align="center">库存 </td>
<td width="37%" align="center">剩余( <span class="STYLE1">红色↓ </span>) </td>
</tr>
</table>
<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" style="color:#006600;">
<%
sql = "select sum(mcshuliang) as sb,sum(zongshu) as nh,sum(zongshu)-sum(mcshuliang) as xy,yaomingzi from yao group by yaomingzi"
iPageSize =10
iPageNo = 1
iRecordsCounter = 0
data = executeList(conn, sql, iPageSize, iPageNo, iRecordsCounter)
For i = 0 To UBound(data,2)
%>
<tr bgcolor="#CCFFFF" height="30" onMouseOver="this.className='over'" onMouseOut="this.className='out'">
<td width="36%&q
相关问答:
http://www.zgjhjy.com/Test/PrimaryTest/Index.aspx
就是类似以上的在线测试系统,需要有一个后台的,语言是asp的,数据库是access的,还需要能在后台对信息进行添删改查的。谢谢各位了。。。
程序真的很多,不知 ......
我一个项目,有个插入操作,具体是这样的:
我有进货信息表。在出货时选择相应的进货信息,输入数量,选择部门后,点保存按钮,由于网络延时,点一下没有反映,于是用户就又点一下,导致一次插入了两条记录:
例:
......
function CheckOpwd(){//验证用户名
var pwd=document.all.txtOpwd;
var div1=document.getElementById("divPwd");
if (pwd.value=="")
{
......
A页面
<table width="200" border="1">
<tr>
<td>1</td>
<td>3</td>
<td><!--#include/top.html#-- ......
<?xml version="1.0"?>
<root>
<status>433</status>
<msg>这个是汉字</msg>
<serialno>123</serialno>
</root>
如何用ASP读取 status值 ......