文章分类 -  Asp.net MVC

Asp.net MVC相关
摘要:这个是我在百度里面写的,转到这里来。当然是“参考”了别人的,拿来分享:在Controller里面写一个方法,只是一个简单的例子:1 public ActionResult Down()2 {3 string filePath = Server.MapPath("~/UpLoad/bomb3.png");4 string fileName = Path.GetFileName(filePath);5 Stream iStream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileSha... 阅读全文
posted @ 2012-01-29 13:47 徐文峰 阅读(534) 评论(0) 推荐(0)
摘要:分享别人的东西:城市:public class City { public int ID { get; set; } public int pID { get; set; } public string Name { get; set; } }地区:public class District { public int ID { get; set; } public int cID { get; set; } public string Name { get; set; } }省份:public class Province { public int ID { get; ... 阅读全文
posted @ 2012-01-29 13:44 徐文峰 阅读(281) 评论(0) 推荐(0)
摘要:使用TimeSpan计算两个时间的差值 阅读全文
posted @ 2007-11-15 16:35 徐文峰 阅读(3950) 评论(0) 推荐(0)