📄 gqxg.asp
字号:
<!--#include file="yz.asp"-->
<!--#include file="css.asp"-->
<body>
<div align="center">
<center>
<table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="90%">
<tr>
<td width="100%" background="images/title.gif">
<p align="right"><b><font color="#0066CC">MTV歌曲修改</font></b></td>
</tr>
<tr>
<td width="100%" bgcolor="#E6ECF9">
<%
song=Request("song")
if song="" then
Response.write "请输入歌名"
Response.end
end if
%>
<!--#include file="data.asp"-->
<%
sql="select * from 歌曲 where 歌名='"&song&"'"
set rs=conn.execute(sql)
If Rs.Bof OR Rs.Eof then
Response.write "数据库查找不到这首歌,请确认书写没有错误"
Response.end
else
gname=rs("歌名")
dizhi=rs("歌曲地址")
name=rs("歌手姓名")
fl=rs("所属分类")
gs=rs("格式")
pic=rs("图片")
id=rs("id")
end if
%>
<form name="form1" method="post" action="gqxgok.asp">
<div align="center">
<center>
<table width="100%" border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
<tr>
<td width="377">MTV歌曲名称:
<input name="gname" type="text" value="<%=gname%>" size="12" style="font-size: 9pt; border-style: solid; border-width: 1">
<input name="id" readonly type="text" value="<%=id%>" size="3" style="font-size: 9pt; border-style: solid; border-width: 1">
</td>
<td width="416">MTV歌手姓名:
<input name="name" type="text" value="<%=name%>" size="13" style="font-size: 9pt; border-style: solid; border-width: 1">
</td>
</tr>
<tr>
<td>所属分类:
<select name="select" style="font-size: 9pt">
<option value="<%=fl%>"><%=fl%></option>
<%
sql="select * from 类别"
set rs=conn.execute(sql)
do while Not rs.Eof
%>
<option value="<%=rs("类别")%>"><%=rs("类别")%></option>
<%
rs.MoveNext
loop
rs.close
conn.close
set rs=nothing
set conn=nothing
%>
</select>
</td>
<td>格式:
<input name="gs" type="text" value="<%=gs%>" size="11" style="font-size: 9pt; border-style: solid; border-width: 1">
</td>
</tr>
<tr>
<td>图片:
<input name="pic" type="text" value="<%=pic%>" size="20" style="font-size: 9pt; border-style: solid; border-width: 1">
</td>
<td>MTV视听路径:
<input name="dizhi" type="text" value="<%=dizhi%>" size="11" style="font-size: 9pt; border-style: solid; border-width: 1">
</td>
</tr>
<tr>
<td colspan="2">
<div align="left">推荐:是
<input type="radio" name="radiobutton" value="true">
否
<input type="radio" name="radiobutton" value="false" checked>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div align="right">
<input type="submit" name="Submit" value="确认修改" style="font-size: 9pt; border-style: solid; border-width: 1">
<input type="reset" name="Submit2" value="重 置" style="font-size: 9pt; border-style: solid; border-width: 1">
</div>
</td>
</tr>
</table>
</center>
</div>
</form></td>
</tr>
</table>
</center>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -