public string GetJsonFromDataTable(DataTable dt,
int total, bool ShowFooter, string fields, string inputfiled, string ShowMessage
= "合计:", string filt...
分类:
Web程序 时间:
2014-05-10 00:10:36
阅读次数:
397
1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using
System.Text.RegularExpressions; 6: using Sy...
分类:
其他好文 时间:
2014-05-09 23:52:24
阅读次数:
543
1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6:
namespace AnkeEdu.Tools 7: { 8: 9: /// 10: ///...
分类:
移动开发 时间:
2014-05-09 23:40:45
阅读次数:
551
1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6:
namespace AkDTH.Common 7: { 8: /// 9: /// 时间字符...
分类:
其他好文 时间:
2014-05-09 23:29:10
阅读次数:
400
最近在学习xml.linq
网上也找了一些资料都不大全面,因此在这写了一点东西和大家分享,由于本人知识有限,如有错误请指证可扩展标记语言,标准通用标记语言的子集,一种用于标记电子文件使其具有结构性的标记语言。它可以用来标记数据、定义数据类型,是一种允许用户对自己的标记语言进行定义的源语言。
它非常适...
分类:
其他好文 时间:
2014-05-09 23:12:08
阅读次数:
425
1 using System; 2 using System.Collections.Generic;
3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6
using System.Linq; ....
分类:
其他好文 时间:
2014-05-09 16:00:14
阅读次数:
209
一、基础技术选型 C# .NET 3.5/4.0 这两个版本的.NET已经相当方便(Linq,
Lambda,Parallel),语法简洁,配合WCF和WF两项技术,可以满足快速开发,维护方便的目标。 Win Form
因ERP项目涉及大量的表单(Entry),查询(Enquiry),报表(Repo...
分类:
其他好文 时间:
2014-05-09 15:56:54
阅读次数:
352
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Threading.Tasks;namespace OverrideTest{ class A {...
分类:
其他好文 时间:
2014-05-09 13:43:24
阅读次数:
291
筛选出 2012-2-1 的数据private DataTable GetData() {
DataTable dt = new DataTable(); dt.Columns.Add("Id", typeof(int)); ...
分类:
其他好文 时间:
2014-05-09 12:58:02
阅读次数:
259
刚才有看到一个问题http://bbs.csdn.net/topics/390781072。是在DataTable获取某列最小值,但是在动态生生DataTable时,列名有遇上特特殊字符"["和"]"。因此在执行DataTable的computer方法,会出现异常,找不到此列。其实最初的数据源的字段...
分类:
其他好文 时间:
2014-05-09 12:55:37
阅读次数:
301