`
cab0605
  • 浏览: 108672 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论
文章列表
1.Ubuntu Fedora CentOS等Linux系统不能上网只能上百度的解决办法首先让我为大家介绍一下这个问题的背景知识。典型TCP数据包有一个最大窗口大小为64KB的窗口域。这在因特网发展初期,大部分系统都没有能力处理比这更大的数据, ...
 protected void gridView_OnRowCreated(object sender, GridViewRowEventArgs e)         {               if (e.Row.RowType == DataControlRowType.DataRow)             {                 e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor; this.style.backgroundColor='# ...

列隐藏或显示

public string ls_listcolumn = "SBMCPYM,ZJFFBM,USERID,CZRQ,KPSFSC"; public bool lb_state = false; //控制显示标志 protected void CheckBox1_OnCheckedChanged(object sender, EventArgs e) { this.HiddenField1.Value = ls_listcolumn; if (this.CheckBox1.Checked == true) { lb_state = ...
代码  public int GetColumnIndex(GridView gridView, string fieldName)         {             int index = -1;             for (int i = 0; i < gridView.Columns.Count; i++)             {                 DataControlField dataControlField = gridView.Columns[i];                 BoundField boundField ...
http://shanyou.cnblogs.com/archive/2005/12/22/302936.html   protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e){   e.Row.Cells[5].Visible = false;}       //在下列事件中可以设置指定列的值 protected void gridView_RowDataBound(object sender, GridViewRowEventArgs e) ...
http://jcobra.blog.163.com/blog/static/470493200966287962/   母版页(扩展名是.master)它的使用跟普通的页面一样,可以可视化的设计,也可以编写后置代码。与普通页面不一样的是,它可以包含ContentPlaceHolder控件,ContentPlaceHolder控件就是可以显示内容页面的区域。代码如下:<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" ...
时间计算 select CAST(DATEDIFF(Mi,CONVERT(datetime, experBeginTime, 120),CONVERT(datetime, experFinishTime, 120))/1440.00 as long) as da,*from dbo.experName
DateTime.Now; 获取日期加时间  格式:2007-10-22 23:02:07DateTime.Now.Year();获取日期中的年份DateTime.Now.Month();获取日期中的月份DateTime.Now.Day();获取日期中的日份DateTime.Now.Hour();获取时间中的时DateTime.Now.Minute();获取时间中的分DateTime.Now.Second();获取时间中的秒
//先定义来源 Maticsoft.BLL.ud_pub_water_type type_bll = new Maticsoft.BLL.ud_pub_water_type();   //给指定的下拉列表增加数据        public void Load_type_name()        {             this.ddl_water_type.Items.Clear();            DataSet ds = new DataSet();            ds = type_bll.GetAllList();            int li_co ...
整数或者小数:^[0-9]+\.{0,1}[0-9]{0,2}$只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^(0|[1-9][0-9]*)$"。只能输入有两位小数的正实数:"^[0-9]+(.[0-9]{2})?$"。只能输入有1~3位小数的正实数:"^[0-9]+(.[0-9]{1,3})?$"。只能 ...
 大家在基于webform中使用水晶报表时如果简单的按照网上“阿刀”的做法,肯定会提示你:登陆失败。   对于这个问题,斑竹我花了整整一天的时间研究水晶报表的帮助文件,终于得到解决方案。   我不是一个保守的人,我相 ...
using CrystalDecisions.CrystalReports.Engine   using CrystalDecisions.Shared    strEndDate=Request.QueryString.Get("EndDate");   //声明报表的数据对象   CrystalDecisions.CrystalReports.Engine.DatabasecrDatabase;CrystalDecisions.CrystalReports.Engine.TablecrTable;   TableLogOnInfodbConn=newTa ...
using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using Sys ...
//导出控件Aspose.Cells 必须引用该控件 using System; using System.Data; using System.Data.OleDb; using System.Collections; using System.Configuration; using System.Collections.Generic; using System.IO; using Aspose.Cells; namespace BLL {     public class ImportExportExcel     {         private stati ...

修改列名

GridView1.DataSource = dt;  GridView1.DataBind();  先绑定,再修改。GridView1.AutoGenerateColumns = false;  GridView1.Columns[0].HeaderText ="ID";  GridView1.Columns[1].HeaderText ="姓名"; 
Global site tag (gtag.js) - Google Analytics