摘要:
head标签加入下列代码 阅读全文
摘要:
/// /// 生成缩略图 /// /// 源图路径(物理路径) /// 缩略图路径(物理路径) /// 缩略图宽度 /// 缩略图高度 /// 生成缩略图的方式 public static void MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode) { System.Drawing.Image originalImage = System.Drawing... 阅读全文
摘要:
本文的数据库用的是sql server自带数据Northwind 连接字符串CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->stringconn=ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;confige文件CodeCode highlighting produced by Actipro 阅读全文
摘要:
protected void Button1_Click(object sender, EventArgs e) { /* 微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite 下载超过400mb的文件时导致Aspnet_wp.exe进程回收而无法成功下载的问题。 代码如下: */ Response.ContentType = "application/x-zip-compressed"; Response.AddHeader("Content-Disposition", "at 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Net; 4 using System.IO; 5 6 namespace FTP操作 7 { 8 /// 9 /// FTP客户端操作类 10 /// 11 public class FtpClient 12 { 13 #region 构造函数 14 /// 15 /// 创建FTP工具 16 /// 17 //... 阅读全文
摘要:
引用类型总是那么神秘,原因就是因为它存储的是内存地址,对于一个引用类型的变量来说,你在进行赋值操作时,实现上是以地址的形式传递的,当你在代码段中对一个引用类型操作时,他会反应到原对象上,以下我说几个引用类型常见的用法:情况一:定义集合变量后,修改它的内容元素,会影响原对象吗?答:对的,会反映到元集合上代码: List yiyi = new List { new Yinyong { ID = 1, Name = "zzl" }, new Yinyong { ID = 2, Name = "bobo" } }; yiyi[0].Name = "修改 阅读全文