📄 addmovie.asp
字号:
<!--#include file="conn.asp"-->
<html>
<head>
<title>添加电影</title>
</head>
<body topmargin="20" leftmargin="15" bgcolor="#D6EF7E">
<LINK href="images/forum_admin.css" type=text/css rel=stylesheet>
<TABLE class=tableBorder height=1 cellSpacing=1 cellPadding=5 width="100%"
align=center border=0>
<TBODY>
<TR>
<TH height=25 style="background-image: url('images/admin_bg_1.gif')"> <b><font style="font-size: 9pt">添 加 电 影</font></span></b></TH></TR></tbody></table>
<form method="POST" action="savemovie.asp" name="myform">
<center>
<table width="584" border="0" cellpadding="0" cellspacing="1" bordercolorlight="#000000" height="379">
<tr bordercolordark="#FFFFFF">
<td width="578" height="377">
<table width="600" cellpadding="0" cellspacing="0" bordercolor="#006CD9" height="443" style="border-collapse: collapse" border="0">
<tr>
<td width="578" bgcolor="#0099FF" colspan="2" height="23">
<p align="center"><b>影片添加页</b></td>
</tr>
<tr>
<td width="68" bgcolor="#FFFFFF" height="25" nowrap>
<p align="center">影片名称:</td>
<td width="511" bgcolor="#FFFFFF" height="25">
<input type="text" name="title3" size="20" class="smallinput" maxlength="200">
<font color="#FF0000"><span lang="en-us"> </span></font></td>
</tr>
<tr>
<td width="68" bgcolor="#FFFFFF" height="19" nowrap>
<div align="center">
影片设置:
</div>
</td>
<td bgcolor="#FFFFFF" height="19" width="511">
<select class="smallSel" name="typeid" size="1">
<%
dim rs,sql,sel
set rs=server.createobject("adodb.recordset")
sql="select * from type"
rs.open sql,conn,1,1
do while not rs.eof
sel="selected"
response.write "<option " & sel & " value='"&rs("type")&"'>"+rs("type")+"</option>"+chr(13)+chr(10)
rs.movenext
loop
rs.close
%>
<option selected value="影片类型" name="typeid">影片类型</option>
</select>
<select size="1" name="where">
<option value="大陆">大陆</option>
<option value="台湾">台湾</option>
<option value="香港">香港</option>
<option value="日韩">日本</option>
<option value="韩国">韩国</option>
<option value="欧美">欧美</option>
<option value="其他">其他</option>
<option selected value="出产地区" name="where">出产地区</option>
</select><select size="1" name="Level">
<option value="★">一星级</option>
<option value="★★">二星级</option>
<option value="★★★">三星级</option>
<option value="★★★★" selected>四星级</option>
<option value="★★★★★">五星级</option>
<option value="选择推荐度" name="Level">选择推荐度</option>
</select>
</td>
</tr>
<tr>
<td width="68" bgcolor="#FFFFFF" height="20" nowrap>
<p align="center">播放格式:</td>
<td bgcolor="#FFFFFF" height="20" width="511">
<input type="radio" value="rm" checked name="movietype">
<img border="0" src="../img/real.gif">
<input type="radio" value="md" name="movietype">
<img border="0" src="../img/media.gif">
<input type="radio" value="mov" name="movietype">
<img border="0" src="../img/lookmov.gif"></td>
</tr>
<tr>
<td width="68" bgcolor="#FFFFFF" height="19" nowrap>
<p align="center">影片长度:</td>
<td bgcolor="#FFFFFF" height="19" width="511">
<input type="text" name="howlong4" size="4" class="smallinput" maxlength="255" value="90"><span lang="en-us">
</span>分种</td>
</tr>
<tr>
<td width="68" bgcolor="#FFFFFF" height="25" nowrap>
<p align="center">领衔主演:</td>
<td bgcolor="#FFFFFF" height="25" width="511">
<input type="text" name="name" size="38" class="smallinput" maxlength="255"></td>
</tr>
<tr>
<td width="68" bgcolor="#FFFFFF" height="25" nowrap>
<p align="center">影片地址:</td>
<td bgcolor="#FFFFFF" width="490"><input type="text" name="Path" size="38" class="smallinput" maxlength="255"></td>
</tr>
<tr>
<td width="67" bgcolor="#FFFFFF" height="173" valign="top">
<div align="center">
<p align="center">影片简介:
</div>
</td>
<td bgcolor="#FFFFFF" height="173" width="511">
<textarea rows="13" name="Content3" cols="68"></textarea></td>
</tr>
</table>
</td>
</tr>
</table>
<p><input type="submit" value=" 添 加 " name="cmdok" class="buttonface">
<input type="reset" value=" 清 除 " name="cmdcancel" class="buttonface"></p>
</center>
</form>
</body>
<%
set rs=nothing
conn.close
set conn=nothing
%>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -