asp 源代码,找一款asp+access源代码 高分,追加
各位老铁们,大家好,今天由我来为大家分享asp 源代码,以及找一款asp+access源代码 高分,追加的相关问题知识,希望对大家有所帮助。如果可以帮助到大家,还望关注收藏下本站,您的支持是我们最大的动力,谢谢大家了哈,下面我们开始吧!
asp程序实现简单的注册,登录网页的源代码
1,(index.asp用户登陆页面)
<!--#include file="conn.asp"-->
<!-- blog.soowooo.cn悠悠长假期-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>会员</title>
<style type="text/css">
<!--
body,td,th{
font-family:宋体;
font-size: 14px;
}
-->
</style>
</head>
<body>
<center>
<p>会员注册系统</p>
<form name="form1" method="post" action="login.asp">
<table width="34%" border="0">
<tr>
<td width="33%" height="30">用户名:</td>
<td width="67%" height="30"><input name="username" type="text" id="username" size="15"></td>
</tr>
<tr>
<td height="30">密码:</td>
<td height="30"><input name="password" type="password" id="password" size="15"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="确定">
<input type="reset" name="Submit" value="重置"></td>
</tr>
<tr>
<td colspan="2"><a rel="external nofollow" href="reg.asp" target="_self">注册</a></td>
</tr>
</table>
</form>
</center>
</body>
</html>
2,(login.asp用户数据处理文件)
<!--#include file="conn.asp"-->
<%
'打开数据库判断用户是否存在,info为表名,username为字段名
set rsc=server.createobject("adodb.recordset")
sqlc="select* from info where username='"&request.Form("username")&"' and password='"&request.Form("password")&"'"
rsc.open sqlc,conn,1,1
session("username")=rsc("username")
session("password")=rsc("password")
session.Timeout=30
set rsc=nothing
response.Redirect("change.asp")
'如果用户不存在,session("username")为空
%>
3,(change.asp用户信息修改页面)
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>修改</title>
<style type="text/css">
<!--
body,td,th{
font-size: 14px;
}
-->
</style></head>
<center>
<body>
<br>
<%
set rsc=server.createobject("adodb.recordset")
sqlc="select* from info where username='"&session("username")&"' and password='"&session("password")&"'"
rsc.open sqlc,conn,1,1
nr=rsc("password")
username=rsc("username")
password=rsc("password")
sex=rsc("sex")
qq=rsc("qq")
mail=rsc("mail")
add=rsc("add")
personalinfo=rsc("personalinfo")
vv=rsc("ntime")
set rsc=nothing
if nr="" then
response.Redirect("index.asp")
end if
if strcomp(nr,request.Form("password"))=0 then
response.Write("欢迎你!"&request.Form("username"))
response.Write("你是在"&vv&"注册的")
session("username")=request.Form("username")
end if
if session("username")="" then
response.Redirect("index.asp")
end if
%>
<form name="form1" method="post" action="change.asp?ac=ch">
<table width="39%" height="105" border="0">
<tr>
<td width="27%" height="30">用户名:</td>
<td width="73%" height="30"><input name="username" type="text" id="username" value="<%=username%>">
*</td>
</tr>
<tr>
<td height="30">密码:</td>
<td height="30"><input name="password" type="text" id="password" value="<%=password%>">
*</td>
</tr>
<tr>
<td height="30">性别:</td>
<td height="30"><input name="sex" type="text" id="sex" value="<%=sex%>"></td>
</tr>
<tr>
<td height="30">QQ:</td>
<td height="30"><input name="qq" type="text" id="qq" value="<%=qq%>"></td>
</tr>
<tr>
<td height="30">Mail:</td>
<td height="30"><input name="mail" type="text" id="mail" value="<%=mail%>"></td>
</tr>
<tr>
<td height="30">地址:</td>
<td height="30"><input name="add" type="text" id="add" value="<%=add%>"></td>
</tr>
<tr>
<td>介绍</td>
<td><textarea name="personalinfo" cols="30" rows="6" id="personalinfo"><%=personalinfo%></textarea></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="Submit" value="修改">
<a rel="external nofollow" href="change.asp?se=y" target="_self">退出系统</a></td>
<% if strcomp(request.QueryString("se"),"y")=0 then
session("username")=""
response.Redirect("index.asp")
end if
%>
</tr>
</table>
</form>
<%
if strcomp(request.QueryString("ac"),"ch")=0 then
set rs=server.createobject("adodb.recordset")
sql="select* from info where username='"&session("username")&"'"
rs.open sql,conn,1,3
rs("username")=request.Form("username")
rs("password")=request.Form("password")
rs("mail")=request.Form("mail")
rs("sex")=request.Form("sex")
rs("qq")=request.Form("qq")
rs("add")=request.Form("add")
rs("personalinfo")=request.Form("personalinfo")
rs.update
set rs=nothing
response.Write("修改完成!")
end if
%>
</body>
</center>
</html>
4,(reg.asp新用户注册页面)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>用户注册</title>
<style type="text/css">
<!--
body,td,th{
font-family:宋体;
font-size: 14px;
}
-->
</style>
</head>
<body>
<center>
用户注册<br>
<%
=request.QueryString("msg")
%>
<form name="form1" method="post" action="addnewdata.asp?ac=adduser">
<table width="39%" height="105" border="0">
<tr>
<td width="27%" height="30">用户名:</td>
<td width="73%" height="30"><input name="username" type="text" id="username">
*</td>
</tr>
<tr>
<td height="30">密码:</td>
<td height="30"><input name="password" type="password" id="password">
*</td>
</tr>
<tr>
<td height="30">确定密码:</td>
<td height="30"><input name="password2" type="password" id="password2">
*</td>
</tr>
<tr>
<td height="30">性别:</td>
<td height="30"><input name="sex" type="text" id="sex"></td>
</tr>
<tr>
<td height="30">QQ:</td>
<td height="30"><input name="qq" type="text" id="qq"></td>
</tr>
<tr>
<td height="30">Mail:</td>
<td height="30"><input name="mail" type="text" id="mail"></td>
</tr>
<tr>
<td height="30">地址:</td>
<td height="30"><input name="add" type="text" id="add"></td>
</tr>
<tr>
<td>个人介绍</td>
<td><textarea name="personalinfo" cols="30" rows="6" id="personalinfo"></textarea></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="Submit" value="提交"></td>
</tr>
</table>
</form>
</center>
</body>
</html>
5,(addnewdata.asp新用户注册数据处理文件)
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>成功</title>
</head>
<body>
<%
ac=request.QueryString("ac")
msg="注册错误信息"
if request.Form("username")="" then
msg=msg&"<br>"&"用户名不能为空"
end if
if strcomp(cstr(request.Form("password")),cstr(request.Form("password2")))<>0 then
msg=msg&"<br>"&"两次密码输入不同"
end if
if len(request.Form("password"))<6 then
msg=msg&"<br>"&"密码太简单"
end if
if strcomp(msg,"注册错误信息")>0 then
response.Redirect("reg.asp?msg="&msg)
end if
if ac="adduser" then
set rsc=server.createobject("adodb.recordset")
sql="select* from info where username='"&request.Form("username")&"'"
rsc.open sql,conn,1,1
ck=rsc("username")
set rsc=nothing
if ck<>"" then
msg=msg&"<br>"&"用户名被人注册"
response.Redirect("reg.asp?msg="&msg)
end if
dsql="select* from info where id is null"
set rs=server.createobject("adodb.recordset")
rs.open dsql,conn,1,3
rs.addnew
rs("username")=request.Form("username")
rs("password")=request.Form("password")
rs("mail")=request.Form("mail")
rs("sex")=request.Form("sex")
rs("qq")=request.Form("qq")
rs("add")=request.Form("add")
rs("personalinfo")=request.Form("personalinfo")
rs("ntime")=now
rs.update
set rs=nothing
%>
<center>
<a rel="external nofollow" href="index.asp" target="_self">注册成功,点击登陆</a>
</center>
<%
end if
%>
</body>
</html>
6,(conn.asp数据库连接文件)
<%
'连接数据库开始
dim conn,rs,sql
on error resume next
dbpath=server.mappath("userinfo.mdb")
set conn=server.createobject("adodb.connection")
conn.open"PROVIDER=Microsoft.jet.OLEDB.4.0;data source="
'创建记录对象
set rs=server.createobject("adodb.recordset")
%>
7,(userinfo.mdb ACCESS数据库)
在ACCESS中建一个表,然后在这个表中建立字段名称
表名:info
字段名称数据类型
id自动编号
username文本
password文本
sex文本
quest文本
qq文本
mail文本
personalinfo文本
ntime文本
asp网站源代码
在局域网里搭建一个web服务器,固定该机的内网IP,要win2003系统,XP的不行,因为IIS连接数有限制,搭建好,把程序放上去,其他电脑直接输入这台服务器的IP地址就可以访问了。
如果要外网登陆,要先把局域网的路由器映射到这台服务器上,一般是在路由器里设置DMZ主机,然后填上服务器的内网IP。
外网访问时是要输入外网的IP,可以上IP138查询到。
如果你们宽带是固定IP的话申请个域名指向这个IP就行了,如果不是固定IP,就需要使用动态域名,现在常用的是“花生壳”
找一款asp+access源代码 高分,追加
<html>
<head>
<style type="text/css">
<!--
body{font-size:9pt}
td{font-size:9pt}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="pragma" content="nocache">
<!-- byte, table, font, ty, td{font-size:9pt;font-family:Arial} a:link{text-decoration:none;underline:#666666} a:visited{text-decoration:none;color:#666666} a:active{text-decoration:none;color:#666666} a:hover{text-decoration:underline;color:006699}--></style>
<title>欢迎光临上海蒂赛科技有限公司主页!</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init){//reloads the window if Nav4 resized
if(init==true) with(navigator){if((appName=="Netscape")&&(parseInt(appVersion)==4)){
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage;}}
else if(innerWidth!=document.MM_pgW|| innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>
<SCRIPT language=javascript src="verticlewin1.js" type=text/javascript></SCRIPT><SCRIPT language=javascript>
<!--
function xufen(){
var xu=document.mounting.products;
if(xu.value==""){
alert("请选择下拉列表中的具体型号!");
}else{
var fen="files/"+xu.options[xu.selectedIndex].value;
window.open(fen);
}}
//-->
</SCRIPT>
<body topmargin="0" leftmargin="0" link="#C0C0C0" vlink="#C0C0C0" alink="#C0C0C0">
<div align="center">
<HEAD><TITLE>欢迎光临上海蒂赛科技有限公司主页!</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<meta name="Author" content="Hypo">
<meta name="Contact" content="Hypo@Wz163.com">
<meta name="Copyright" content="Hypo&Zhonghuan Tech">
<link rel="external nofollow" href="Images/css.css" rel="stylesheet" type="text/css">
<script Language="JavaScript">
var h;
var w;
var l;
var t;
var topMar= 3;
var leftMar=-10;
var space= 2;
var isvisible;
var MENU_SHADOW_COLOR='#999999';
var global= window.document
global.fo_currentMenu= null
global.fo_shadows= new Array
function HideMenu()
{
var mX;
var mY;
var vDiv;
var mDiv;
if(isvisible== true)
{
vDiv= document.all("menuDiv");
mX= window.event.clientX+ document.body.scrollLeft;
mY= window.event.clientY+ document.body.scrollTop;
if((mX< parseInt(vDiv.style.left))||(mX> parseInt(vDiv.style.left)+vDiv.offsetWidth)||(mY< parseInt(vDiv.style.top)-h)||(mY> parseInt(vDiv.style.top)+vDiv.offsetHeight)){
vDiv.style.visibility="hidden";
isvisible= false;
}
}
}
function ShowMenu(vMnuCode,tWidth){
vSrc= window.event.srcElement;
vMnuCode="<table id='submenu' cellspacing=1 cellpadding=3 style='width:"+tWidth+"' class=tableborder1 onmouseout='HideMenu()'><tr height=23><td nowrap align=left class=tablebody1>"+ vMnuCode+"</td></tr></table>";
h= vSrc.offsetHeight;
w= vSrc.offsetWidth;
l= vSrc.offsetLeft+ leftMar+4;
t= vSrc.offsetTop+ topMar+ h+ space-2;
vParent= vSrc.offsetParent;
while(vParent.tagName.toUpperCase()!="BODY")
{
l+= vParent.offsetLeft;
t+= vParent.offsetTop;
vParent= vParent.offsetParent;
}
menuDiv.innerHTML= vMnuCode;
menuDiv.style.top= t;
menuDiv.style.left= l;
menuDiv.style.visibility="visible";
isvisible= true;
makeRectangularDropShadow(submenu, MENU_SHADOW_COLOR, 4)
}
function makeRectangularDropShadow(el, color, size)
{
var i;
for(i=size; i>0; i--)
{
var rect= document.createElement('div');
var rs= rect.style
rs.position='absolute';
rs.left=(el.style.posLeft+ i)+'px';
rs.top=(el.style.posTop+ i)+'px';
rs.width= el.offsetWidth+'px';
rs.height= el.offsetHeight+'px';
rs.zIndex= el.style.zIndex- i;
rs.backgroundColor= color;
var opacity= 1- i/(i+ 1);
rs.filter='alpha(opacity='+(100* opacity)+')';
el.insertAdjacentElement('afterEnd', rect);
global.fo_shadows[global.fo_shadows.length]= rect;
}
}
var About='<a style=font-size:9pt;line-height:14pt; href=\"About.asp\"><font color="#EEEEEE">公司简介</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Culture.asp\"><font color="#EEEEEE">公司文化</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Organize.asp\"><font color="#EEEEEE">组织机构</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Principle.asp\"><font color="#EEEEEE">精神理念</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Contact.asp\"><font color="#EEEEEE">联系我们</font></a>'
var News='<a style=font-size:9pt;line-height:14pt; href=\"News.asp\"><font color="#EEEEEE">企业新闻</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"yeNews.asp\"><font color="#EEEEEE">业内资讯</font></a>'
var Product='<a style=font-size:9pt;line-height:14pt; href=\"Product.asp\"><font color="#EEEEEE">产品展示</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Products.asp\"><font color="#EEEEEE">产品分类</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"search.asp\"><font color="#EEEEEE">产品搜索</font></a>'
var Job='<a style=font-size:9pt;line-height:14pt; href=\"Job.asp\"><font color="#EEEEEE">人才招聘</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Jobs.asp\"><font color="#EEEEEE">人才策略</font></a>'
var sale='<a style=font-size:9pt;line-height:14pt; href=\"Sale.asp\"><font color="#EEEEEE">国内市场</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Salea.asp\"><font color="#EEEEEE">国外市场</font></a>'
var server='<a style=font-size:9pt;line-height:14pt; href=\"Server.asp\"><font color="#EEEEEE">会员中心</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"NetBook.asp\"><font color="#EEEEEE">留言中心</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"E_shop.asp\"><font color="#EEEEEE">订单查询</font></a>'
var index='<a style=font-size:9pt;line-height:14pt; href=\"Default.asp\"><font color="#EEEEEE">网站首页</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Index.asp\"><font color="#EEEEEE">企业形象页</font></a>'
var img='<a style=font-size:9pt;line-height:14pt; href=\"Honor.asp\"><font color="#EEEEEE">企业荣誉</font></a><br><a style=font-size:9pt;line-height:14pt; href=\"Img.asp\"><font color="#EEEEEE">企业形象</font></a>'
</script>
</head>
<BODY leftMargin=0 topMargin=0 marginheight="0" marginwidth="0" onmousemove="HideMenu()">
<div align="center">
<table width="100" border="0" align="center" cellpadding="0" cellspacing="0" class="ce">
<tr>
<td><object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="776" height="242">
<param name="movie" value="top.swf">
<param name="quality" value="High">
<param name="loop" value="false">
<embed src="top.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="776" height="242" quality="High" loop="false"></embed>
</object></td>
</tr>
</table>
<table width="780" border="0" cellpadding="0" cellspacing="0" class="ce">
<tr>
<td align="center"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="510" height="35">
<param name="movie" value="swf/top.swf">
<param name="quality" value="high">
<embed src="swf/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="510" height="35"></embed>
</object></td>
</tr>
<tr>
<td height="1" background="images/aa1.gif"></td>
</tr>
</table>
</div>
<table width="780" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#E7E3E7" id="table1" style="border-collapse: collapse">
<tr>
<td bgcolor="#FFFFFF"><table width="780" border="0" align="center" cellpadding="0" id="table2" style="border-collapse: collapse">
<tr>
<td width="250" valign="top" rowspan="2">
<div align="center">
<table border="1" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="169" id="table18" height="120" bordercolorlight="#C0C0C0" bordercolordark="#C0C0C0">
<tr>
<td height="21" style="font-size: 9pt; font-family: Arial"><img border="0" src="images/case.gif" width="164" height="23"></td>
</tr>
<tr>
<td valign="top" style="font-size: 9pt; font-family: Arial">
<div align="center"><img border="0" src="images/arrow2.gif" width="164" height="23">
<table border="0" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="87%" id="table19" cellpadding="0" height="61">
<tr>
<td height="61" style="font-size: 9pt; font-family: Arial">
<p style="line-height: 150%"><img border="0" src="images/arrow1.gif" width="6" height="7"><span lang="zh-cn">东方号顺利下水运行良好</span><img border="0" src="images/arrow1.gif" width="6" height="7"><img border="0" src="images/arrow1.gif" width="6" height="7">东方造船厂制定使用品牌<br>
<img border="0" src="images/arrow1.gif" width="6" height="7">巴西引进斯达利系列产品</td>
</tr>
</table>
</div></td>
</tr>
</table>
<table border="1" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="169" id="table18" height="120" bordercolorlight="#C0C0C0" bordercolordark="#C0C0C0">
<tr>
<td height="21" style="font-size: 9pt; font-family: Arial"><img border="0" src="images/case_new.gif" width="164" height="23"></td>
</tr>
<tr>
<td valign="top" style="font-size: 9pt; font-family: Arial">
<div align="center"><img border="0" src="images/arrow2.gif" width="164" height="23">
<table border="0" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="87%" id="table19" cellpadding="0" height="61">
<tr>
<td height="61" style="font-size: 9pt; font-family: Arial">
<p style="line-height: 150%"><img border="0" src="images/arrow1.gif" width="6" height="7"><a rel="external nofollow" href="new1.asp">我厂厂房已顺利搬迁(组图</a>)<img src="images/hot.gif" width="25" height="12"><br>
<img border="0" src="images/arrow1.gif" width="6" height="7"><a rel="external nofollow" href="new2.asp">我厂正在组装国内最大的高弹性联轴器(组图</a>)<img src="images/new02.gif" width="35" height="20"><br>
</td>
</tr>
</table>
</div></td>
</tr>
</table>
<table border="1" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="169" id="table7" height="139" bordercolorlight="#C0C0C0" bordercolordark="#C0C0C0">
<tr>
<td height="21" style="font-size: 9pt; font-family: Arial"><img border="0" src="images/jiangxiang.gif" width="164" height="23"></td>
</tr>
<tr>
<td valign="top" style="font-size: 9pt; font-family: Arial">
<div align="center"><img border="0" src="images/arrow2.gif" width="164" height="23">
<table border="0" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="87%" id="table8" cellpadding="0" height="241">
<tr>
<td height="19" style="font-size: 9pt; font-family: Arial"><img border="0" src="images/arrow1.gif" width="6" height="7">斯达利获得3项大奖</td>
</tr>
<tr>
<td height="222" style="font-size: 9pt; font-family: Arial"><img border="0" src="images/jiangxiang1.gif" width="154" height="205"></td>
</tr>
</table>
</div></td>
</tr>
</table>
<p>
</div></td>
</tr>
<tr>
<td height="430" valign="top">
<img border="0" src="images/top3.gif" width="580" height="85">
<table border="0" style="border-collapse: collapse" width="605" id="table9" height="138">
<tr>
<td width="26"></td>
<td width="380">
<table border="0" style="border-collapse: collapse" width="361" id="table10" cellpadding="3">
<tr>
<td width="355" valign="top" colspan="2"></td>
</tr>
<tr>
<td width="7" valign="top"><img border="0" src="images/arrow1.gif" width="6" height="7"></td>
<td width="341"><span lang="zh-cn">配套我公司GTL5021F型高弹性联轴器的中国首批6M453C型柴油机(2200KW/600r/min)5000吨多用途船和345TEU集装箱船几年来运行良好。</span></td>
</tr>
<tr>
<td width="7" valign="top"><img border="0" src="images/arrow1.gif" width="6" height="7"></td>
<td width="341">和GTL16021F型联轴器(160KNm)配套的4410KW/425min的德国MAK6M601AK柴油机在越南装船运行。</td>
</tr>
<tr>
<td width="7" valign="top"><img border="0" src="images/arrow1.gif" width="6" height="7"></td>
<td width="341"> WX25M-400L型干式火星熄灭器已经安装于江南造船集团生产的8200m液化气船,该船入德国GL船级社,性能优越。</td>
</tr>
<tr>
<td width="7" valign="top"><img border="0" src="images/arrow1.gif" width="6" height="7"></td>
<td width="341">我公司新开发的GN820型硅油减震器已和广州柴油机厂的8320型柴油机系列一并配套使用。</td>
</tr>
<tr>
<td width="7" valign="top"><img border="0" src="images/arrow1.gif" width="6" height="7"></td>
<td width="341"> YZ系列圆锥型橡胶减震器(负载:100-5000kgf),已和振华港机、上海电信和淄博柴油机厂等单位配套联合使用。</td>
</tr>
<tr>
<td width="7" valign="top"><img border="0" src="images/arrow1.gif" width="6" height="7"></td>
<td width="341" valign="top">上海蒂赛科技有限公司早已获得ISO9001质量体系认证。</td>
</tr>
<tr>
<td width="355" colspan="2" valign="top"><img border="0" src="images/iso.gif" width="362" height="151"></td>
</tr>
</table></td>
<td width="193" valign="top">
<table border="1" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="156" id="table13" height="139" bordercolorlight="#C0C0C0" bordercolordark="#C0C0C0">
<tr>
<td height="21" style="font-size: 9pt; font-family: Arial"><img border="0" src="images/productlist.gif" width="184" height="21"></td>
</tr>
<tr>
<td valign="top" style="font-size: 9pt; font-family: Arial">
<div align="center"><img border="0" src="images/arrow2.gif" width="184" height="23">
<table border="0" style="border-collapse: collapse; font-size:9pt; font-family:Arial" width="72%" id="table14" cellpadding="2" height="241" cellspacing="2">
<tr>
<td height="222" style="font-size: 9pt; font-family: Arial" valign="top">
<script language="JavaScript">
var index= 50;
link= new Array(50);
text= new Array(50);
text[0]='<b>联轴器部分(主要产品)</b>'
text[1]='GTL系列高弹性联轴器'
text[2]='TL系列高弹性联轴器'
text[3]='CTL系列高弹性联轴器'
text[4]='XL系列高弹性联轴器'
text[5]='SL系列高弹性联轴器'
text[6]='JXL系列联轴器'
text[7]='GNL系列联轴器'
text[8]='DML系列高弹性联轴器<br>'
text[9]='<font color=ffffff>sdfsdf</font>'
text[10]='<b>联轴器(国标和部标产品)</b>'
text[11]='DB3202-87挠性鼓形联轴器'
text[12]='GB4323-84弹性套柱销联轴器'
text[13]='GB5272-85梅花型弹性联轴器'
text[14]='GB5844-86轮胎式联轴器'
text[15]='GB5014-85弹性柱销联轴器'
text[16]='GB5015-85弹性柱销齿式联轴器'
text[17]='GB6069-85滚子链联轴器'
text[18]='GICLZ4223-86鼓形齿式联轴器'
text[19]='GIICL4378-86鼓形齿式联轴器'
text[20]='JS/jsb系列蛇形弹簧联轴器'
text[21]=''
text[22]='GB5843-86型凸缘联轴器'
text[23]='CL型齿轮联轴器'
text[24]='老CLZ型齿轮联轴器'
text[25]='滑块联轴器(GB4384-86)'
text[26]='立式夹壳联轴器(HG5-213-65)'
text[27]='<font color=ffffff>sdfsdf</font>'
text[28]='<b>减震器部分</b>'
text[29]='YXN压入式扭振减震器'
text[30]='GN硅油扭振减震器'
text[31]='SH系列双板式减震器'
text[32]='JB系列夹板式减震器'
text[33]='PB系列平板式减震器'
text[34]='SJ系列斜置式减震器'
text[35]='JG系列剪切式减震器'
text[36]='JZ系列支柱式减震器'
text[37]='LJZ系列支柱式减震器'
text[38]='DJ系列剪切式减震器'
text[39]='E系列减震器'
text[40]='EA系列减震器'
text[41]='<font color=ffffff>sdfsdf</font>'
text[42]='<b>消声器部分</B>'
text[43]='WX系列微孔式消声器'
text[44]='KXM系列干式灭火式消声器'
text[45]='AX系列消声器'
text[46]='HMX系列消声器'
text[47]='<font color=ffffff>sdfsdf</font>'
text[48]='<font color=ffffff>sdfsdf</font>'
text[49]='<b>更多型号...</b>'
document.write("<marquee scrollamount='1' scrolldelay='10' direction='up' width='176' id=flink height='200' onmouseover=flink.stop() onmouseout=flink.start()><table border='0' cellspacing='0' cellpadding='0' width='100%'>");
for(i=0;i<index;i+=1){
document.write("<tr><td width='176'><font size='2'>"+text[i]+"</font></td>");}
document.write("</table></marquee>");
</script></td>
</tr>
好了,关于asp 源代码和找一款asp+access源代码 高分,追加的问题到这里结束啦,希望可以解决您的问题哈!