⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 productmanage.asp

📁 很漂亮的一个网络公司的源码
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="../Function/ProductPage.asp"-->
<!--#include file="check.asp"-->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<link rel="stylesheet" href="../css/style.css" type="text/css">
<script>
	function deleted(pname,pid,typeid)
	{
		var winleft,wintop
		winleft=(window.screen.width-200)/2
		
		wintop = (window.screen.height-100)/2

		if (confirm('\n真的要删除此产品吗?'))
		{
			location.href="Product_del.asp?id="+pid + "&fname=" + pname + "&typeid="+typeid;
		}
   }
</script>
</head>
<body>
<%
Dim KeyWord,NowPage
If IsSubmit Then
	KeyWord = Request.Form("KeyWord")
	NowPage = 1
Else
	KeyWord = Request.QueryString("KeyWord")
	NowPage=Request.QueryString("Page")
End If
If IsNumeric(NowPage) Then
	NowPage=Clng(NowPage)
	TypeID = Request.QueryString("TypeID")
Else
	NowPage=1
	TypeID = ""
End if
%>
<table width="97%" cellpadding=3 cellspacing=1 bgcolor=#a7a7a7 align="center">
<form action="" method="post" name="frmsearch">
  <tr height="25" bgcolor="#f3f3f3">
    <td>搜索关键字:
    <input name="KeyWord" type="text" value="<%=KeyWord%>">
    <input type="submit" name="Submit" value=" 搜!"></td>
  </tr>
</form>
</table>
<br>
<table width="97%" cellpadding=3 cellspacing=1 bgcolor=#a7a7a7 align="center">
  <tr height=25 bgcolor=#f3f3f3>
    <td align=center width="50%">产品名称</td>
	<td align=center width="20%">加入时间</td>
	<td align=center width="30%">操作</td>
</tr>
<%
	If IsNumeric(NowPage) Then
		NowPage=Clng(NowPage)
	Else
		NowPage=1
	End if
	ShowManagePage NowPage,15,0,KeyWord
%>
</table>
</body>
<html>

⌨️ 快捷键说明

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