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

📄 sort_edit.asp

📁 这《ASP网络编程从入门到精通》书中的全部源程序
💻 ASP
字号:

<%
if session("admin")="" then
	response.write "<Script>window.alert('您目前还没有登录,请先登录!');location.replace('index.asp');</Script>"
end if
%>
<html>

<head>
<title>分类管理</title>
</head>

<body>
<form name="forms" method="post" action="sort_ok.asp">
      <p align="center"><font size="5">分类信息</font></p>
      <table border="1" width="70%" align = "center">
        <tr>
          <td width="36%" bgcolor="#C0C0C0">
            <p align="center"><font size="2">分类名称:</font></td>
          <td width="64%">
            <input type = "hidden" name = "id" value = "<%=Request.QueryString("id")%>">
            <input type = "text" name = sort value="<%=Request.QueryString("sort")%>"> </td>
        </tr>
        <tr>
          <td width="36%" bgcolor="#C0C0C0">
            <p align="center"><font size="2">首页显示:</font></td>
          <td width="64%">

            <select name="show" id="show">
            <%If Request.QueryString("show") = 0 Then%>
                <option value="0" selected>否</option>
                <option value="1">是</option>
            <%Else%>
                <option value="0">否</option>
                <option value="1" selected>是</option>
            <%End If%>
            </select>
          </td>
        </tr>
        <tr>
          <td width="36%" bgcolor="#C0C0C0">
            <p align="center"><font size="2">上级ID:</font></td>
          <td width="64%">
            <input name="sort_id" type="text" id="sort_id" value="<%=Request.QueryString("sort_id")%>" size="5"></td>
        </tr>
        <tr>
          <td width="36%" bgcolor="#C0C0C0">
            <p align="center"><font size="2">操作:</font></td>
          <td width="64%">
            <input readonly name="action" type="text" id="action" value="<%=Request.QueryString("act")%>" size="5"></td>
        </tr>
      </table>
      <p align="center">
  	<input type = "submit" value = "确定" name = submit>
  

</form>
</body>

</html>

⌨️ 快捷键说明

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