//如本年度销售额、本季度利润、本月新增客户 //C#里内置的DateTime基本上都可以实现这些功能,巧用DateTime会使你处理这些事来变轻松多了  …
using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using …
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { for (int i = …
protected void Button4_Click(object sender, EventArgs e) { GridView1.Focus(); &nb…
第一步:在configuration中加入如下代码(下载URLRewriter.dll并添加引用)<configSections> <section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter…
按字母排序 ".*"="application/octet-stream"".001"="application/x-001"".301"="application/x-301"".323"="text/h323"".906"="application/x-906"".907"="drawing/907"".a11"="application/x-a11"".acp"="audio/x-mei-…
VS2008:右击“解决方案资源管理器”下的你的项目名,选择“属性页”,点击左边“生成”,在右边“目标Framework(F)”下有个下拉框,选择“.NET Framework 3.5”,再点击“确定”就OK了!!
// 获取文件列表 private void GetFilesList() { StringBuilder sb = new StringBuilder();  …
using System.IO; //引入命名空间 string path = "text.aspx"; string pathName = P…
/// <summary> /// 用递归方法删除文件夹目录及文件 /// </summary> /// <param name="dir">带文…
DataTable dt = new DataTable(); DataSet ds = new DataSet(); ds.Tables.Add("Photo");//设置表名 &nb…
命名空间: using System.Management; using System.IO; using System.Runtime.InteropServices; using System.Security.Cryptography; using System.Text; using Microsoft.Win32; /// <summary> …
在网上找了好久,也用了好些方法都不正确,最后自己无耐想了一个方法(小胡原创)foreach (Control c in ContentPlaceHolder1.Controls) { …
using System.Data; using System.Data.OleDb; string connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\txl.xls;Extended Properties=Excel 8.0;"; &nbs…
关于上传图片大小的问题,如果图片太小或者太大,用户自己不想重新调整大小,有的时候图会按原图一样输出,有的大,有的小,现在找到一个方法,可以控制大小,让宽度固定,高度随原先的比例缩小或者放大, 在fckeditor\editor\dialog\fck_image\fck_image.js 找到 Js代码 GetE('txtWidth').value&nbs…
using System.IO; using System.Net; using System.Text; using System.Text.RegularExpressions; public string GetHL(int pageindex) { …
用到了正则,需要using 命名空间. using System.Text.RegularExpressions; public static string ClearHtml(string strH…
using System; using System.Data; using System.Configuration; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System…
设置父容器的对齐方式,如果没有父容器可以在treeview 两端加<div style="text-align:left"></div> 如下: <div align="center" style="margin:0px auto; border:solid 1px blue; text-align:left&q…
DayOfWeek 返回的是 DayOfWeek 枚举常数,当然是英文 要得到本地语言显示值可使用 System.Globalization 命名空间中的 CultureInfo 类 方法如下: System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(DateTime.Now.DayOfW…