rizhijilu.aspx.cs

来自「OA自动化办公系统,就是OA自动化办公系统」· CS 代码 · 共 36 行

CS
36
字号
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;

using COM.OA.BLL;
using System.Collections.Generic;
using COM.OA.Entity;
using System.Data.SqlClient;

public partial class qs_rizhi_Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
       IList<worklogjl> lists = BLLGeneric.Select<worklogjl>(CommandType.StoredProcedure, "rizhiJiLu");

      
        this.GridView1.DataSource = lists;
        this.GridView1.DataBind();
    }
    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes["onmouseover"] = "orgColor=this.style.backgroundColor;this.style.backgroundColor='#D5EEBB';";
            e.Row.Attributes["onmouseout"] = "this.style.backgroundColor=orgColor;";
        }
    }
}

⌨️ 快捷键说明

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