摘要: 1、重写Repeater(修改过的,当只有一页的情况时,只显示Total页数及共有多少条目,不会显示上一页,下一页等):View Code using System.ComponentModel;using System.Web.UI;[assembly: TagPrefix("MyRepeater.Control", "MyRepeater")]namespace MyRepeater{ /// <summary> /// JRepeater控件 /// </summary> [DefaultProperty("Tex 阅读全文
posted @ 2013-03-08 09:42 小笔头大做用 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 以下为我常用数据库访问的帮助类:View Code using System;using System.Data;using System.Data.SqlClient;using System.Configuration;using System.Collections.Generic; public static class DBHelper { // connection string public static readonly string connectionString = ConfigurationManager.ConnectionStrin... 阅读全文
posted @ 2013-03-08 09:27 小笔头大做用 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 传出员工号等信息,查询此人是否在AD中存在:public bool ValidateEmpNoAndEmailId(string vEmpNo, string vEmailId) { DirectoryEntry rootEntry = new DirectoryEntry("LDAP://ad.home.com"); DirectorySearcher srch = new DirectorySearcher(rootEntry); srch.SearchScope = SearchScope.Subtree;//搜寻条件.... srch.Filter = " 阅读全文
posted @ 2013-03-08 09:23 小笔头大做用 阅读(273) 评论(0) 推荐(0) 编辑