摘要: using System;using System.Collections.Generic;using System.Configuration;using System.Data;using System.Data.OleDb;using System.Data.SqlClient;using S... 阅读全文
posted @ 2016-01-22 17:01 少时不知贵 阅读(283) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;using System.Data;using System.Collections;using My... 阅读全文
posted @ 2016-01-22 17:00 少时不知贵 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 描述: 封装一个具有一个参数并返回TResult参数指定的类型值的方法. 语法: public delegate TResult Func<T,TResult>(T arg); 参数类型: T:此委托封装的方法的参数类型. TResult:此委托封装的方法的返回值类型. 参数: arg:委托封装的方 阅读全文
posted @ 2016-01-22 11:11 少时不知贵 阅读(691) 评论(0) 推荐(0) 编辑
摘要: public class DataConvertJson { #region dataTable转换成Json格式 /// /// dataTable转换成Json格式 /// /// ... 阅读全文
posted @ 2016-01-22 09:23 少时不知贵 阅读(276) 评论(0) 推荐(0) 编辑
摘要: public class EncryptHelper { public static string EncryptMd5Str(string str) { MD5 md5Obj = MD5.Create(); by... 阅读全文
posted @ 2016-01-22 09:22 少时不知贵 阅读(801) 评论(0) 推荐(0) 编辑
摘要: public static class SqlHelper { public static object FromDbValue(object value) { if (value == DBNull.Value) { return null; } else { return value; } } 阅读全文
posted @ 2016-01-22 09:20 少时不知贵 阅读(193) 评论(0) 推荐(0) 编辑
摘要: @Html.DisplayNameFor(model=>model.Id) @Html.DisplayNameFor(model => model.Pid) @Html.Display... 阅读全文
posted @ 2016-01-22 09:15 少时不知贵 阅读(298) 评论(0) 推荐(0) 编辑