.net
文章平均质量分 77
kingsonchen
我是程序员.
展开
-
asp.net获取URL和IP地址
1、通过ASP.NET获取如果测试的url地址是http://www.test.com/testweb/default.aspx, 结果如下:Request.ApplicationPath: /testwebRequest.CurrentExecutionFilePath: /testweb/default.aspxRequest.FilePath:转载 2006-12-10 17:25:00 · 1219 阅读 · 0 评论 -
.net产生汉字的类
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原创 2006-12-12 16:58:00 · 534 阅读 · 0 评论 -
MembershipUser的业务实体.
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;usin原创 2007-03-14 15:31:00 · 629 阅读 · 0 评论 -
C#2.0的转义符对应列表
转义符 字符名 / 单引原创 2007-03-14 17:26:00 · 735 阅读 · 0 评论 -
SQLHelper 2.0
//===============================================================================// This file is based on the Microsoft Data Access Application Block for .NET// For more information please go to //原创 2007-04-13 16:32:00 · 2065 阅读 · 1 评论 -
asp.net 2.0 生成缩略图
/// /// 生成缩略图 /// /// 源图路径(物理路径) /// 缩略图路径(物理路径) /// 缩略图宽度 /// 缩略图高度 /// 生成缩略图的方式 public static void MakeThumbnail(string originalImagePath, string thumbnailPath,转载 2007-07-16 02:02:00 · 643 阅读 · 0 评论 -
html中特殊字符码
Html编码 显示或处理结果 <原创 2007-04-17 18:45:00 · 548 阅读 · 0 评论 -
GridView 72般绝技
GridView无代码分页排序GridView选中,编辑,取消,删除GridView正反双向排序GridView和下拉菜单DropDownList结合GridView和CheckBox结合鼠标移到GridView某一行时改变该行的背景色方法一鼠标移到GridView某一行时改变该行的背景色方法二GridView实现删除时弹出确认对话框GridView实现自动编号GridView实现自定义时间货币等转载 2008-10-13 16:37:00 · 312 阅读 · 0 评论 -
asp.net利用RAR实现文件压缩解压缩
如果服务器上安装了RAR程序,那么asp.net可以调用RAR实现文件压缩与解压缩。不过要注意的是,由于Web程序不能直接调用客户端的程序(除非用ActiveX,ActiveX几乎被废弃),所以如果要想实现让用户把本地文件用网页解压缩只有把文件上传到服务器上再调用服务器上的RAR压缩,同理要解压缩本地的RAR文件可以把文件上传到服务器解压再拿回来。本文讲怎么在服务器端的目录解压缩文件!转载 2008-10-13 17:04:00 · 296 阅读 · 0 评论