add_product.asp

来自「不错的ASP整站源代码。在IIS环境下运行都没有问题」· ASP 代码 · 共 40 行

ASP
40
字号
<!--#include file="../checkuser.asp" -->
<%
 m_ver = Trim(request("ver"))
 if m_ver="cn" then 
  tmpstr_t="[中文版]"
 elseif  m_ver="en"  then 
 tmpstr_t="[英文版]"
 else
 response.write "错误访问页面,请重试" 
 response.end    
 End If%> 
 <%
  catalogid=request("catalogid")
 %>
<!--#include file="../../include/db_conn.asp" -->
<!--#include file="../../include/pub_func.asp" -->  
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>添加产品</title>
<script language="javascript">

function checkform(nform)
{
	if(form1.productname.value=="")
	{
		alert("请输入产品名称!");
		form1.productname.focus();
		return false;
	}
}
	
</script>
<link href="../include/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div align="center"><img src="../images/Snapproduct.jpg" width="587" height="684"></div>
</body>
</html>

⌨️ 快捷键说明

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