上一页 1 ··· 55 56 57 58 59
摘要: 一.基类的选择: Control   控件开发基类,所有控件都直接或间接继承该类。提供各类控件的通用属性和方法,ID,Visible等.扩展灵活性最强。 WebControl  继承至Control,还增加了布局,可访问性,外观样式等特性。 CompositeControl 把现有控件聚合起来创建一个组合控件时,可以继承此类。实现INamingContainer接口,... 阅读全文
posted @ 2009-09-29 16:07 smodi 阅读(194) 评论(0) 推荐(0)
摘要: /Files/chenqingwei/staruml指导手册.rar 阅读全文
posted @ 2009-09-29 15:47 smodi 阅读(281) 评论(0) 推荐(0)
摘要: 网上看到的,还不错哦。/Files/chenqingwei/类库开发的设计准则.rar 阅读全文
posted @ 2009-09-29 15:44 smodi 阅读(274) 评论(0) 推荐(1)
摘要: In this article, we will explore some common text file operations using C#. This article has been requested by a long time reader of dotnetcurry.com. NET provides various classes like the File and Fi... 阅读全文
posted @ 2009-09-27 16:51 smodi 阅读(725) 评论(0) 推荐(0)
摘要: A thumbnail is a small sized image. Creating a thumbnail using .NET is extremely simple. In this article, we will explore how to create a thumbnail image and display the thumbnail in our application. ... 阅读全文
posted @ 2009-09-27 16:47 smodi 阅读(1050) 评论(0) 推荐(0)
摘要: 转自:http://www.dotnetcurry.com/ShowArticle.aspx?ID=189以下定义的二个字符串为例:string strOriginal = "These functions will come handy";string strModified = String.Empty;1. Iterate a String – You can use the &... 阅读全文
posted @ 2009-09-27 16:30 smodi 阅读(476) 评论(0) 推荐(0)
摘要: 源码:/Files/chenqingwei/Frame2.rar 阅读全文
posted @ 2009-09-27 15:59 smodi 阅读(569) 评论(2) 推荐(0)
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using ... 阅读全文
posted @ 2009-09-27 15:47 smodi 阅读(529) 评论(0) 推荐(0)
摘要: 客户端上传本地excel文件到服务器上,并在客户端显示。 // 上传按钮 protected void btnUp_Click(object sender, EventArgs e) { bool b = Upload(fuExcel); // 上传excel文件 if (!b) { return; } string name = fuExcel.FileName; string filepath = Server.MapPath("~/upload/") + name; ... 阅读全文
posted @ 2009-09-27 15:23 smodi 阅读(15287) 评论(3) 推荐(1)
摘要: asp.net web打印 阅读全文
posted @ 2009-09-27 13:32 smodi 阅读(3753) 评论(1) 推荐(0)
上一页 1 ··· 55 56 57 58 59