📄 addfilm.asp
字号:
<!--#include file="articleconn.asp"-->
<!--#include file="security.asp"-->
<!--#include file="home1.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>添加影片</title>
<link href="CSS/STYLE.CSS" rel="stylesheet" type="text/css">
</head>
<body topmargin="20" leftmargin="15" bgcolor="#666666" >
<center>
<form method="POST" action="savefilm.asp" name="form1">
<table border="0" cellspacing="0" width="600" bordercolorlight="#000000" bordercolordark="#FFFFFF" cellpadding="0" height="20" class="sx">
<tr bgcolor="#333333">
<td width="100%" height="20">
<p align="center"><font
color="#FFFFFF">添加影片页</font>
</td>
</tr>
</table>
<table width="600" border="0" cellpadding="0" cellspacing="0" bordercolorlight="#000000">
<tr bordercolordark="#FFFFFF">
<td width="100%" height="20">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td colspan="2" height="10"> </td>
</tr>
<tr>
<td width="85"> <div align="center">影片名称:</div></td>
<td> <input type="text" name="title" size="20"
class="smallinput" maxlength="255"> <font color="#FF0000" size="3">*</font>
</td>
</tr>
<tr>
<td width="85"> <div align="center">主要演员: </div></td>
<td> <input type="text" name="dog" size="20"
class="smallinput" maxlength="255" value="未知"> <font color="#FF0000" size="3">*</font>
</td>
</tr>
<tr>
<td width="85"> <div align="center">影片宽带:</div></td>
<td> <input type="text" name="daikuan" size="20"
class="smallinput" maxlength="255"> <font color="#FF0000" size="3">*</font>
</td>
</tr>
<tr>
<td width="85"> <div align="center">影片类别:</div></td>
<td> <select class="smallSel" name="typeid" size="1">
<option selected value="">请选择类别</option>
<%
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
response.write "<option value='"+CStr(rs("typeID"))+"' name=typeid>"+rs("type")+"</option>"+chr(13)+chr(10)
rs.movenext
loop
rs.close
%>
</select> </td>
</tr>
<tr>
<td width="85"> <div align="center">影片评价: </div></td>
<td> <select size="1" name="softlevel">
<option>★</option>
<option>★★</option>
<option selected>★★★</option>
<option>★★★★</option>
<option>★★★★★</option>
</select> </td>
</tr>
<tr>
<td width="85"> <div align="center">文件格式:</div></td>
<td> <select name="runsystem" size="1">
<option value="rm" selected>rm</option>
<option value="RA">RA</option>
<option value="mp3">MP3</option>
<option value="ASF">ASF</option>
<option value="MIDI">MIDI</option>
<option value="其它">其它</option>
</select> </td>
</tr>
<tr>
<td width="85"> <div align="center">电影缩略图:</div></td>
<td> <input type="text" name="images" size="50"
class="smallinput" maxlength="255" value="image/juzhao.jpg"> </td>
</tr>
<tr>
<td width="85"> <div align="center">
<p>内容简介: </p>
</div></td>
<td> <textarea rows="8" name="content" cols="65" class="smallarea">暂无</textarea>
<font color="#FF0000" size="3">*</font> <input type="hidden" name="zhuid" value="<%=zhuid%>">
<input type="hidden" name="typename" value="<%=typename%>"> </td>
</tr>
<script language="javascript">
function setid()
{
str='';
if(!window.form1.no.value)
window.form1.no.value=1;
for(i=1;i<=window.form1.no.value;i++)
str+=' 第'+'<INPUT TYPE="text" NAME=no'+i+' value='+i+' size=2 class="smallinput">集: <input type="text" name="url'+i+'" class="smallinput" style="padding-left:1pt" size=60 value="rtsp://10.39.176.2/'+i+'.rm"><BR>';
window.upid.innerHTML=str+'<br>';
}
</script>
<tr>
<td width="85"> <div align="center">影片集数:</div></td>
<td> <input type="text" name="no" class="smallinput" value="2" size=2>
<input type="button" name="Button" class="buttonface" onclick="setid();" value="设定">
(在点击“设定”按钮后才可输入影片对应地址) </td>
</tr>
<tr>
<td colspan=2 id="upid"> </td>
</tr>
<tr>
<td colspan="2"> <div align="center">站长推荐:是:
<input type="radio" name="best" value="1">
否:
<input type="radio" name="best" value="0" checked>
</div></td>
</tr>
</table>
</td>
</tr>
</table>
<p>
<input type="submit" value=" 添 加 "
name="cmdok" class="buttonface">
<input type="reset" value=" 清 除 "
name="cmdcancel" class="buttonface">
</p>
</form>
<div align="center">
<p>以上带 <font color="#FF0000" size="3">*</font> 为必填写</p>
<p> <a href="mimi.asp"><font face="Webdings" size="4">7</font>返回管理页面</a> </p>
</div></center>
</body>
</html><% conn.close
set conn=nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -