⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 musicpost.aspx

📁 1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据库dooogo。 2、然后打开web.config修改 <DbProvider type="Club.Fram
💻 ASPX
字号:
<%@ Page language="c#" Codebehind="musicPost.aspx.cs" AutoEventWireup="false" Inherits="Club.ClubManage.Skin.musicPost" %>
<INPUT id="txtID" type="hidden" name="txtID" value="<%=Info.ID%>">
<div class="info">
	<h2><%=Info.ID==0?"音乐添加":"音乐修改"%></h2>
	<table  width="100%" border="0" cellspacing="0" cellpadding="0" ID="Table1">
	<tr>
	<th>音乐名称:</th>
	<td><INPUT id="txtMusicName" type="text" value="<%=Info.MusicName%>" dataType="Require" msg="MusicNameMsg,,Require,"><span id="MusicNameMsg"></span></td>
	</tr>
	<tr>
	<th>歌手:</th>
	<td><INPUT id="txtSinger" value="<%=Info.Singer%>" type="text"></td>
	</tr>
	<tr id="panelIsUpload" style="<%=Info.IsUpLoad&&Info.ID!=0?"display:none;":""%>">
	<th>上传类型</th>
	<td><INPUT type="radio" <%=Info.ID==0||!Info.IsUpLoad?"checked":""%> class="btn_p" name="txtIsUpLoad" onclick="execute.UpLoadMusicShow(0)">网址<INPUT type="radio" class="btn_p" <%=Info.ID!=0&&Info.IsUpLoad?"checked":""%> name="txtIsUpLoad" onclick="execute.UpLoadMusicShow(1)">上传
	</td>
	</tr>
	<tr style="<%=Info.IsUpLoad&&Info.ID!=0?"display:none;":""%>" id="panelUrl">
	<th>音乐地址:</th>
	<td><INPUT id="txtMusicUrl" value="<%=!Info.IsUpLoad?Info.MusicUrl:""%>" type="text"></td>
	</tr>
	<tr id="panelMusic" style="<%=Info.IsUpLoad&&Info.ID!=0?"":"display:none;"%>">
	<th>已上传音乐</th>
	<td><a href="javascript:;" onclick="execute.DelMusicFile()">删除</a><img src="images/music.gif">
	<input type="hidden" id="txtFileName" value="<%=Info.IsUpLoad?Info.MusicUrl:""%>" ></td>
	</tr>
	<tr>
	<th>类别</th>
	<td><SELECT id="txtSortId" dataType="Require" msg="SortMsg,,Require," name="txtSortId">
	<OPTION selected>请选择</OPTION>
	<%=getSortList()%>
</SELECT><span id="SortMsg"></span></td>
	</tr>
	<tr>
	<th>歌词说明:</th>
	<td><TEXTAREA id="txtExplain" rows="11" cols="35" require="false" dataType="LimitB"
			min="3" max="2000" keyEvent="Count" keyObj="Count2" msg="ExplainMsg,,Range,"><%=Info.Explain%></TEXTAREA>
			<input id="Count2" class="w_30" value="<%=(Info.Explain!=null?Info.Explain.Length.ToString():"0")%>" disabled NAME="Count2"><div id="ExplainMsg"></div></td>
	</tr>
	</table>
	<div class="center"><INPUT id="txtSubmit" class="button" type="submit" value="写好啦" name="txtSubmit"><INPUT id="Reset1" class="button" type="reset" value="重写" name="Reset1"></div>
</div>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -