📄 product_domain_edit.asp
字号:
<!--#include file="conn.asp" -->
<!--#include file="admin_dn.asp" -->
<%
if Trim(Request.QueryString("w"))="save" then
rs.open "select * from domain where id="&request("id"),conn,2,3
rs("lx")=Trim(Request.Form("lx"))
rs("title")=Trim(Request.Form("title"))
rs("je1")=Request.Form("je1")
rs("je2")=Request.Form("je2")
rs("je3")=Request.Form("je3")
rs.update
%>
<script language="VBScript" type="text/VBScript">
msgbox "域名修改成功..."
</script>
<%
rs.close
end if
rs.open "select * from domain where id="&request("id"),conn,2,3
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<link href="image/css.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="5" topmargin="5">
<p><strong>域名产品修改</strong></p>
<p> </p>
<form name="form1" method="post" action="product_domain_edit.asp?w=save">
<table width="95%" height="213" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="20%">产 品 名 称:</td>
<td width="80%"><input name="title" type="text" id="title" value="<%=rs("title")%>">
<font color="#FF0000">域名的名称
<input name="id" type="hidden" id="id" value="<%=request("id")%>">
</font></td>
</tr>
<tr>
<td>域 名 类 型:</td>
<td><input name="lx" type="text" id="lx" value="<%=rs("lx")%>" size="10">
<font color="#FF0000"> 每一域名详细类型 如 com 注意这里域名不要 "."</font></td>
</tr>
<tr>
<td>直接客户价格:</td>
<td><input name="je1" type="text" id="je1" value="<%=rs("je1")%>" size="10">
元/年 <font color="#FF0000">只能为数字</font></td>
</tr>
<tr>
<td>一般代理价格:</td>
<td><input name="je2" type="text" id="je2" value="<%=rs("je2")%>" size="10">
元/年<font color="#FF0000"> 只能为数字</font></td>
</tr>
<tr>
<td>高级代理价格:</td>
<td><input name="je3" type="text" id="je3" value="<%=rs("je3")%>" size="10">
元/年<font color="#FF0000"> 只能为数字</font></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="确定修改"></td>
</tr>
</table>
</form>
<p> </p>
<% rs.close %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -