C#代码
文章平均质量分 57
老男人娃娃脸
c#、java
展开
-
Asp.Net最常用的函数
1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=curre转载 2008-03-20 19:37:00 · 696 阅读 · 0 评论 -
C#接收邮件
最近由于工作需要,接触到了邮件服务器.以前我用CF写过,感觉没有什么,我想用C#来实现会更简单,但是万万没想到C#没有提供邮件接收的方法,令我很不解.通过我在网上查找,发现了一个国外公司写好的接收邮件软件,通过我把他的DLL破解之后就不用注册了,要不可是需要花钱买序列号的啊好贵的啊!不过我希望各位如果有能力还是去买正版的为好!我破解他的确是没有办法的办法拉!请各位能够理解^_^下面是接收邮件的...原创 2008-01-08 22:10:00 · 13111 阅读 · 151 评论 -
C#的美国日历
CustomCalendar.cs(日历显示与打印)代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using S原创 2008-01-09 11:10:00 · 1548 阅读 · 2 评论 -
C#的委托与事件
委托和事件在 .Net Framework中的应用非常广泛,然而,较好地理解委托和事件对很多接触C#时间不长的人来说并不容易。它们就像是一道槛儿,过了这个槛的人,觉得真是太容易了,而没有过去的人每次见到委托和事件就觉得心里别(biè)得慌,混身不自在。本文中,我将通过两个范例由浅入深地讲述什么是委托、为什么要使用委托、事件的由来、.Net Framework中的委托和事件、委托和事件对Observ转载 2008-04-14 18:41:00 · 829 阅读 · 1 评论 -
asp.net的一些实用小方法
/// /// 过滤HTML标记 /// /// /// public static string GetFilterHTML(string str){ string rStr = ""; if (!string.IsNullOrEmpty(str)) { rStr = Regex.R原创 2008-09-17 13:59:00 · 475 阅读 · 0 评论 -
DropDownList控件下的无限级分类(递归)
using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControl原创 2008-11-06 11:37:00 · 1063 阅读 · 1 评论 -
asp.net两级联动(包含添加和修改)
//科目数据初始化 var subcat = new Array(); subcat[0] = new Array(0, 请选择科目, 0); subcat[1] = new Array(x1, 语文, x1yw); subcat[2] = new Array(x2, 语文, x2yw); subcat[3] = n原创 2008-11-07 14:02:00 · 749 阅读 · 0 评论 -
C# 获得.xls文件的内容 获得.xls文件中的表名
private void ExcelToDS(string Path) { string clientFilePath = FileUpload1.PostedFile.FileName; //客户端文件的物理路径 int i = clientFilePath.LastIndexOf("."); //取得文件名中原创 2009-02-27 18:25:00 · 1157 阅读 · 0 评论