资源简介
asp.net 在线音乐网
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class index : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
if (!IsPostBack)
{
//调用自定义bindAudition方法,显示试听排行帮
bindAudition();
//调用自定义bindFashion方法,显示流行金曲
bindFashion();
//调用自定义bindOld方法,显示经典老歌
bindOld();
//调用自定义bindOccident方法,显示欧洲经典
bindOccident();
//调用自定义bindCampus方法,显示校园民谣
bindCampus();
}
}
//绑定GridView控件显示试听排行榜
protected void bindAudition()
{
string sqlSel = “select top 10 * from tb_musicInfo order by auditionSum desc“;
gvAudition.DataSource = dataOperate.getRows(sqlSel);
gvAudition.DataKeyNames = new string[] { “id“ };
gvAudition.DataBind();
}
//绑定GridView控件显示流行金曲
protected void bindFashion()
{
string sqlSel = “select top 7 * from tb_musicInfo where musicType=1 order by id desc “;
gvFashion.DataSource = dataOperate.getRows(sqlSel);
gvFashion.DataKeyNames = new string[] { “id“ };
gvFashion.DataBind();
}
//绑定GridView控件显示经典老歌
protected void bindOld()
{
string sqlSel = “select top 7 * from tb_musicInfo where musicType=2 order by id desc “;
gvOld.DataSource = dataOperate.getRows(sqlSel);
gvOld.DataKeyNames = new string[] { “id“ };
gvOld.DataBind();
}
//绑定GridView控件显示欧洲经典
protected void bindOccident()
{
string sqlSel = “select top 7 * from tb_musicInfo where musicType=3 order by id desc “;
gvOccident.DataSource = dataOperate.getRows(sqlSel);
gvOccident.DataKeyNames = new string[] { “id“ };
gvOccident.DataBind();
}
//绑定GridView控件显示校园民谣
protected void bindCampus()
{
string selSel = “select top 7 * from tb_musicInfo where musicType=4 order by id desc “;
gvCampus.DataSource = dataOperate.getRows(selSel);
gvCampus.DataKeyNames = new string[] { “id“ };
gvCampus.DataBind();
}
///
/// 全选或全部取消GridView控件中的所有复选框
///
/// GridView对象,需要设置的GridView控件
/// 布尔值变量,设置选中还是取消
protected void allSelect(GridView gv bool bl)
{
//判断传入的复选框对象是否为选中状态
if (bl)
{
//遍历传入的GridView对象
foreach (GridViewRow gvr in gv.Rows)
{
//设置GridView控件中的所有复选框为选中状态
((CheckBox)gvr.FindControl(“CheckBox1“)).Checked = false;
}
}
else
{
foreach (GridViewRow gvr in gv.Rows)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 923 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\MasterPage.master.cs
文件 5901 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\MasterPage.master
文件 7813 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\Web.Config
文件 7832 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\index.aspx.cs
文件 24783 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\index.aspx
文件 7360 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\musicInfo.aspx.cs
文件 9112 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\musicInfo.aspx
文件 4947 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\playListMusic.aspx.cs
文件 2652 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\playListMusic.aspx
文件 4315 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\playMusic.aspx.cs
文件 7246 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\playMusic.aspx
文件 6642 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\searchInfo.aspx.cs
文件 8740 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\searchInfo.aspx
文件 485888 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\必读:程序使用说明.doc
文件 56008 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\musicFile\py.MP3
文件 622 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\musicFile\py.lrc
文件 4087 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\000.gif
文件 11434 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\001.GIF
文件 6468 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\01.gif
文件 69329 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\banner.jpg
文件 43664 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\bbanner.GIF
文件 13352 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\bg.jpg
文件 4801 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\bg1.gif
文件 2538 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\bof.GIF
文件 10894 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\bt.jpg
文件 62083 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\daoh.jpg
文件 1212 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\daohang_01.gif
文件 2657 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\daohang_02.gif
文件 3068 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\daohang_03.gif
文件 3377 2011-12-05 21:36 4 甜橙在线音乐MP3网\playMusic\images\daohang_04.gif
............此处省略38个文件信息
- 上一篇:WinForm操作SQLite 数据库
- 下一篇:C#tsp遗传算法
评论
共有 条评论