摘要:
using System;using System.Collections.Generic;using System.Configuration;using System.Data;using System.Data.OleDb;using System.Data.SqlClient;using S... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;using System.Data;using System.Collections;using My... 阅读全文
摘要:
描述: 封装一个具有一个参数并返回TResult参数指定的类型值的方法. 语法: public delegate TResult Func<T,TResult>(T arg); 参数类型: T:此委托封装的方法的参数类型. TResult:此委托封装的方法的返回值类型. 参数: arg:委托封装的方 阅读全文
摘要:
public class DataConvertJson { #region dataTable转换成Json格式 /// /// dataTable转换成Json格式 /// /// ... 阅读全文
摘要:
public class EncryptHelper { public static string EncryptMd5Str(string str) { MD5 md5Obj = MD5.Create(); by... 阅读全文
摘要:
public static class SqlHelper { public static object FromDbValue(object value) { if (value == DBNull.Value) { return null; } else { return value; } } 阅读全文
摘要:
@Html.DisplayNameFor(model=>model.Id) @Html.DisplayNameFor(model => model.Pid) @Html.Display... 阅读全文