上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页

2008年7月8日

皮肤控件---------------------皮肤控件

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using System.IO; namespace BasicCompent { public abstract class BaseSkinCtrl:WebControl... 阅读全文

posted @ 2008-07-08 12:19 老代哥哥 阅读(205) 评论(0) 推荐(0) 编辑

通用基类

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using System.IO ; namespace BasicCompent { public class BasePage:Page { private... 阅读全文

posted @ 2008-07-08 11:19 老代哥哥 阅读(194) 评论(0) 推荐(0) 编辑

输出过滤 Asp.net Response.Filter

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO ; using System.Text.RegularExpressions; namespace BasicCompent { public class PageResponseFilter:Stream { private Stream mSink; private long mPosition; ... 阅读全文

posted @ 2008-07-08 11:17 老代哥哥 阅读(192) 评论(0) 推荐(0) 编辑

文件依赖缓存的运用

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO ; using System.Xml ; using System.Web.Caching ; using System.Threading ; namespace BasicCompent { public class PageCssProvider { static System.Web.HttpContext cxt; ... 阅读全文

posted @ 2008-07-08 11:16 老代哥哥 阅读(140) 评论(0) 推荐(0) 编辑

自定义SiteMapProvide 4 Asp.net 2.0

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.Security; namespace BasicCompent { public class MySitemapProvider:SiteMapProvider { string homePage; string homeName; string homeDesc;... 阅读全文

posted @ 2008-07-08 11:14 老代哥哥 阅读(129) 评论(0) 推荐(0) 编辑

2008年7月7日

Linq to Objects

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace xStudyezLinq { public class UserInfo { public int ID { get; set; } public string UserName { get; ... 阅读全文

posted @ 2008-07-07 15:58 老代哥哥 阅读(182) 评论(0) 推荐(0) 编辑

2008年6月26日

C++

摘要: 有点郁闷,就看看了C|++ 看的更闷。 // XStudy.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <stdlib.h> #include <stdio.h> #include <malloc.h> #include <memory.h> struct CacheData{ char* cacheItemKey; char* cacheItem; int size; } CP[16],*All; typedef struct _myinfo_deta... 阅读全文

posted @ 2008-06-26 12:17 老代哥哥 阅读(129) 评论(0) 推荐(0) 编辑

搜索框的实现JS

摘要: <script language="javascript" type="text/javascript"> if(typeof String.__Trimed =="undefined"){ String.prototype.trim = function() { var t = this.replace(/(^/s*)|(/s*$)/g, ""); return t.replace(/(^ *)|( *$)/g, "");... 阅读全文

posted @ 2008-06-26 12:13 老代哥哥 阅读(519) 评论(0) 推荐(0) 编辑

ajaxLoginCtrl4StudyezCom

摘要: using System; using System.Data; using System.Configuration; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; namespace A... 阅读全文

posted @ 2008-06-26 12:11 老代哥哥 阅读(148) 评论(0) 推荐(0) 编辑

2008年6月3日

用javascript 实现的TreeView控件 支持 IE ,Firefox

摘要: ---------------ajaxTreeView.js------------------------------ if(typeof ajaxTreeNode =="undefined"){ //ID,值,优先级,父ID function ajaxTreeNode(keyId,keyValue,pIdx,keyPri,isTop){ this.keyId=keyId ; this.keyValue=keyValue ; this.keyPri=keyPri ; this.pIdx=pIdx; this.IsTop=isTop ; this.pLevel=0; thi 阅读全文

posted @ 2008-06-03 13:33 老代哥哥 阅读(257) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页

导航