adsmanage.asp

来自「网店批发系统,很好很强大,很好很强大很好很强大」· ASP 代码 · 共 94 行

ASP
94
字号
<!--#include file="conn.asp"-->
<!--#include file="checkAdmin.asp"-->
<!--#include file="../sysConfig.asp"-->
<!--#include file="../inc/check_inc.asp"-->
<!--#include file="inc/PicDel_inc.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="css/css.css" rel="stylesheet" type="text/css" />
<title>广告管理</title>
</head>

<body>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td align="center"><span style="color:#FF3300">请在此上传您要添加的广告图片,添加完毕即可在广告位置管理中调用</span></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>
<!--#include file="inc/AdsManage_inc.asp"-->
<table width="97%" border="0" cellpadding="0" cellspacing="0">
	  <tr>
	    <td height="24" align="center" class="listtop">广告编号</td>
	    <td align="center" class="listtop">修改图片</td>
        <td align="center" class="listtop">预览</td>
        <td align="center" class="listtop">宽</td>
        <td align="center" class="listtop">高</td>
        <td align="center" class="listtop">链接</td>
        <td align="center" class="listtop">操作</td>
	  </tr>
<%
	if i <> -1 then
		for j = 0 to i
%>
	<form name="Ads<%=Ads(0,j)%>" method="post" action="AdsManage.asp?action=save&ID=<%=Ads(0,j)%>">
	  <tr onMouseOver="this.style.backgroundColor='#FBF9F4';" onMouseOut="this.style.backgroundColor='#FFFFFF'">
		<td height="24" align="center" class="listitem"><%=Ads(0,j)%>号</td>
		<td align="center" class="listitem">
		<input name="Ads<%=Ads(0,j)%>" type="text" class="input_text" value="<%=Ads(1,j)%>" />
		<input name="upload" type="button" class="Button" onClick="window.open('../<%=upload%>?Form=Ads<%=Ads(0,j)%>&Edit=Ads<%=Ads(0,j)%>&Path=adv','','status=no,scrollbars=no,top=300,left=300,width=420,height=165')" value="上传" /></td>
	    <td align="center" class="listitem"><img src="images/icon-viewpic.gif" width="18" height="18" border="0" align="absmiddle" onmouseover="document.getElementById('pic<%=Ads(0,j)%>').style.display='block';" onmouseout="document.getElementById('pic<%=Ads(0,j)%>').style.display='none';" style="cursor:pointer;" />
          <div id="pic<%=Ads(0,j)%>" style="position:absolute;z-index:1;display:none">
<%
	if instr(Ads(1,j),".") then
%>
            <img src="../<%=Ads(1,j)%>" border="0" style="border:1px solid #000000;" />
            <%	
	else
%>
            <img src="../images/emptybook.gif" border="0" style="border:1px solid #000000;" />
            <%
	end if
%>
          </div>
        </td>
	    <td align="center" class="listitem"><input name="AdsWidth" type="text" class="input_text" value="<%=Ads(3,j)%>" size="5" /></td>
	    <td align="center" class="listitem"><input name="AdsHeight" type="text" class="input_text" value="<%=Ads(4,j)%>" size="5" /></td>
	    <td align="center" class="listitem"><input name="Adsurl" type="text" class="input_text" value="<%=Ads(2,j)%>" /></td>
	    <td align="center" class="listitem"><input name="submit2" type="submit" class="Button" value="修改" />
	       <input name="Submit" type="Button" class="Button" value="删除" onclick="window.location.href='AdsManage.asp?action=del&ID=<%=Ads(0,j)%>'" /></td>
	  </tr>
</form>  	  
<%
		next
	end if
%>

</table>
	<form name="addAds" method="post" action="AdsManage.asp?action=add">
	<table width="97%" border="0" cellpadding="0" cellspacing="0">
	  <tr>
		<td height="24" align="center" class="listtitle">
			图片地址
			  <input name="Ads" type="text" class="input_text" value="" />
			<input name="upload" type="button" class="Button" onClick="window.open('../<%=upload%>?Form=addAds&Edit=Ads&Path=adv','','status=no,scrollbars=no,top=300,left=300,width=420,height=165')" value="上传" />
			&nbsp;&nbsp;&nbsp;&nbsp;宽
		    <input name="AdsWidth" type="text" class="input_text" value="0" size="5" />
			&nbsp;&nbsp;高
		    <input name="AdsHeight" type="text" class="input_text" value="0" size="5" />
			&nbsp;&nbsp;&nbsp;&nbsp;图片链接 
			<input name="Adsurl" type="text" class="input_text" value="" /> 
			<input name="submit" type="submit" class="Button" value="确定添加" />
		</td>
	  </tr>
	</table>
	</form>
    <div><img id="preview" style="display:none;" /></div>
    <!--#include file="inc/closeconn_inc.asp"-->
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?