随笔- 5
文章- 14
评论- 4
10 2008 档案
将DataTable或Ilist<>转换成JSON格式
摘要: using System;using System.Data;using System.Text;using System.Collections.Generic;using System.Reflection;/// <summary>/// 将DataTable或Ilist<>转换成JSON格式/// </summary>public class ToJso...阅读全文
jquery AutoComplete
摘要: JS[代码]CSS[代码]前台调用:suggest.init(文本框ID);后台文件:[代码]阅读全文
Nhibernate数据查询简单使用
摘要: 1. 返回所有的会员: string query = "from Member"; IList member = session.CreateQuery(query).List();2. 返回以b开头的会员: string query = "from Member m where m.name like b%"; IList members= session.CreateQuery(query)....阅读全文
