摘要: 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 阅读(704) 评论(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 阅读(1010) 评论(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 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 源码:/Files/chenqingwei/Frame2.rar 阅读全文
posted @ 2009-09-27 15:59 smodi 阅读(551) 评论(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 阅读(510) 评论(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 阅读(15254) 评论(3) 推荐(1) 编辑
摘要: asp.net web打印 阅读全文
posted @ 2009-09-27 13:32 smodi 阅读(3728) 评论(1) 推荐(0) 编辑