www.gusucode.com > 枫的记忆个人主页程序源码程序 > downcode.com\fengdejiyizh\admin\add_photo.asp

    <link href="admin.css" rel="stylesheet" type="text/css">
<%
	if session("level")<>"1" then
		Response.Write("你无权访问此页面!")
		Response.End
	end if	
%>
<!--#INCLUDE FILE="conn.asp"-->
<%
  hidden=trim(request("hidden"))
 
  if hidden="ok" then
  p_type=trim(request("p_type"))
  title=trim(request("title"))
  p_url=trim(request("p_url"))
  content=request("content")
  width=trim(request("width"))
  height=trim(request("height"))
  status=trim(request("status"))
  
  set rs=server.createobject("adodb.recordset")
  sql="select * from photo"
  rs.Open sql,conn,1,3
  rs.addnew
  rs("p_type")=p_type
  rs("title")=title
  rs("p_url")=p_url
  rs("content")=content
  rs("status")=status
  rs("width")=width
  rs("height")=height
  rs.update
	if err.number<>0 then
	    Response.Write("<script language=javascript>alert('添加失败,请点击返回');history.back();</script>")
	    Response.End
	else
		Response.Redirect "manage_photo.asp"
		Response.End
	end if
  end if
%>

<body bgcolor="#CDD5DE">
<br><br>
<table width="75%" border="0" cellspacing="1" cellpadding="0" align="center" class="tablebody">
  <tr>
    <td><table width="100%" border="0" cellpadding="5" cellspacing="0">
        <tr>
          <th>相 片 添 加</a></span></th>
        </tr>
      </table></td>
  </tr>
  <tr>
    <td bgcolor="#FFFFFF"><table width="100%"  border="0" cellspacing="1" cellpadding="8">
	<form name="add_photo" method="post" action="add_photo.asp">
      <input type="hidden" name="hidden" value="ok">
      <tr bgcolor="#F3F5F8">
        <td width="30%" align="right">相 册 类 型:</td>
        <td width="70%"><select name="p_type">
          <option value="自己">自己</option>
          <option value="朋友">朋友</option>
          <option value="兄弟">兄弟</option>
          <option value="家庭">家庭</option>
          <option value="收藏">收藏</option>
        </select> (收藏——各种精美图片)</td>
      </tr>
      <tr bgcolor="#F3F5F8">
        <td width="30%" align="right">是 否 显 示:</td>
        <td width="70%"><input name="status" type="text" id="status" size="4" value="0"> (<font color=red>0</font> 为显示,<font color=red>1</font> 为隐藏) [ 是否显示在主页前台 ]</td>
      </tr>
      <tr bgcolor="#F3F5F8">
        <td width="30%" align="right">相 片 名 称:</td>
        <td width="70%"><input name="title" type="text" id="title" size="50"></td>
      </tr>
      <tr bgcolor="#F3F5F8">
        <td align="right">相 片 地 址:</td>
        <td><input name="p_url" type="text" id="p_url" size="40"> <input type="button" name="Submit2" value="上 传" onClick="window.open('upload_flash.asp?formname=add_photo&editname=p_url&uppath=upfile&filelx=jpg','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')"></td>
      </tr>
      <tr bgcolor="#F3F5F8">
        <td width="30%" align="right">规 格:</td>
        <td width="70%">宽:<input name="width" type="text" id="width" size="6" value="0"> px  高:<input name="height" type="text" id="height" size="6" value="0"> px<br>(最大不要超过536px的宽,原始大小保持0,536×320)</td>
      </tr>
      <tr bgcolor="#F3F5F8">
        <td align="right">相 片 介 绍:</td>
        <td><textarea name="content" cols="60" rows="10"></textarea></td>
      </tr>
      <tr bgcolor="#F3F5F8">
        <td height="40" colspan="2" align="center"><input type="submit" name="Submit" value="提 交"> 
             
          <input type="reset" name="Submit2" value="重 置"></td>
      </tr>
	  </form>
    </table></td>
</table>
</body>
</html>