📄 addvod.asp
字号:
<!--#include file="check.asp" -->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<LINK href="css/netoa.css" rel=STYLESHEET
type=text/css>
<title>添加文件到收藏夹</title>
</head>
<body bgcolor="#F4FFFF">
<br><br>
<table width="583" align="center" bgcolor="#9AD7F3" border="1" height="269" cellpadding="3">
<tr>
<td height="335">
<form method="POST" action="savevod.asp" enctype="multipart/form-data">
<div align="center">
<center>
<table border="1" width="417" height="26" cellspacing="1" cellpading="3" bgcolor="#fef1fe" bordercolorlight="#FFFFFF" bordercolordark="#999999">
<tr>
<td width="128" height="18"><img src="image/icon_ip.gif" width="15" height="15">类别</td>
<td width="274" height="18">
<select name="sortid">
<%
sql="select * from sort order by sortid desc;"
Set rs= Server.CreateObject("ADODB.Recordset")
'response.Write sql
'Response.End
rs.open sql,conn,1,1
if not rs.EOF then
do while not rs.EOF
Response.Write "<option value="&rs("sortid")&">"&rs("sortname")&"</option>"
rs.MoveNext
loop
end if
rs.Close
%>
</select>
</td>
</tr>
<tr>
<td width="128" height="16"><img src="image/icon_ip.gif" width="15" height="15">选择媒体类型</td>
<td width="274" height="16">
<select name="vodsort">
<option value="real">realplay播放器</option>
<option value="mvod" selected>微软媒体播放器</option>
</select>
</td>
</tr>
<tr>
<td width="128" height="1"><img src="image/icon_ip.gif" width="15" height="15">片名</td>
<td width="274" height="1">
<input type="text" name="vodname">
</td>
</tr>
<tr>
<td width="128" height="16"><img src="image/icon_ip.gif" width="15" height="15">媒体简介</td>
<td width="274" height="16">
<textarea name="vodmeno"></textarea>
</td>
</tr>
<tr>
<td width="128" height="16"><img src="image/icon_ip.gif" width="15" height="15">相关图片
</td>
<td width="274" height="16">
<input type="text" name="vodpic">
</td>
</tr>
<tr>
<td width="128" height="16"><img src="image/icon_ip.gif" width="15" height="15">上传时间</td>
<td width="274" height="16"><%=now()%></td>
</tr>
<tr>
<td width="128" height="16"><img src="image/icon_folder_open_topic.gif" width="15" height="15">文件</td>
<td width="274" height="16">
<input type="file" name="lianjie" size="20" class="smallInput">
</td>
</tr>
<tr>
<td width="128" height="16"> </td>
<td width="274" height="16"> </td>
</tr>
</table>
</center>
</div>
<p align="center">
<input type="submit" name="Submit" value="提交">
</p>
</form></td></tr></table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -