您目前尚未登陆,请选择【登陆】或【注册
首页->新闻文章->明博静态新闻文章发布系统源码>>Files/ShowFileList.aspx.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:明博静态新闻文章发布系统源码
当前文件:文件类型 MinbelNews/Files/ShowFileList.aspx.cs打开代码结构图
普通视图
		            
1using System; 2using System.Data; 3using System.Configuration; 4using System.Collections; 5using System.Web; 6using System.Web.Security; 7using System.Web.UI; 8using System.Web.UI.WebControls; 9using System.Web.UI.WebControls.WebParts; 10using System.Web.UI.HtmlControls; 11//该源码下载自www.51aspx.com(51aspx.com) 12 13//此文件使用方式是 ?TypeID=2 14public partial class Files_ShowFileList : System.Web.UI.Page 15{ 16 public string strTypeID = ""; 17 protected void Page_Load(object sender, EventArgs e) 18 { 19 20 if (Request.QueryString["TypeID"] != null) 21 { 22 23 strTypeID = Request.QueryString["TypeID"].ToString(); 24 } 25 else 26 { 27 Response.Write(@"<script language='javascript'>alert('参数不能为空!');</script>"); 28 return; 29 } 30 31 if (!Page.IsPostBack) 32 { 33 if (strTypeID != "") 34 { 35 string strSQL = "SELECT [Title], [Url], [TypeID], [Limit], [InputTime] FROM [FileList] WHERE ([TypeID] =" + Int32.Parse(strTypeID) + ") ORDER BY [InputTime] DESC"; 36 FileSDS.SelectCommand = strSQL; 37 gvFile.DataSourceID = FileSDS.ID; 38 } 39 else 40 { 41 Response.Write(@"<script language='javascript'>alert('参数不能为空!');</script>"); 42 return; 43 } 44 } 45 46 } 47 protected void gvFile_RowDataBound(object sender, GridViewRowEventArgs e) 48 { 49 //隐藏列 50 if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header) 51 { 52 e.Row.Cells[1].Visible = false;//typeid 53 e.Row.Cells[2].Visible = false;//url 54 55 } 56 if (e.Row.RowType == DataControlRowType.DataRow) 57 { 58 //我们先设置当鼠标上去的时候他的背景色改变 59 e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#F3F8F8'"); 60 //下面我们再设置当鼠标离开后背景色再还原 61 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;"); 62 } 63 } 64 65} 66 67 68 69
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:明博静态新闻文章发布系统源码
51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号