-
C# 下载图片示例
using System;using System.Web;public class DownImg : IHttpHandler { //图片下载功能 public void ProcessRequest(HttpContext context) { System.Net.WebResponse response = null; System.IO.Stream stream = null; string path = context.Request.Url.Query.Split(new string[] { "coverimg=" }, StringSplitOptions.RemoveEmptyEntries)[1]; System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(path); response = request.GetResponse(); stream = response.GetResponseStream(); System.IO.MemoryStream memStream = Txooo.Mobile.HttpTools.CloneStream(stream); byte[] bytes = new byte[memStream.Length]; memStream.Read(bytes, 0, bytes.Length); // 设置当前流的位置为流的开始 memStream.Seek(0, System.IO.SeekOrigin.Begin); context.Response.ContentType = "application/octet-stream"; //通知浏览器下载文件而不是打开 string fileName = DateTime.Now.Ticks.ToString() ".jpg"; context.Response.AddHeader("Content-Disposition", "attachment; filename=" fileName); context.Response.BinaryWrite(bytes); context.Response.Flush(); } public bool IsReusable { get { return false; } }}
- 2014-05-29下载
- 积分:1
-
登录器
说明: 热血江湖服务端登录端源码C#编写 v1.0(Hot blooded Jianghu landing source code)
- 2021-02-27 20:59:36下载
- 积分:1
-
Tab2Mif
说明: 编写mif文件,用于对微磁模拟软件oommf的输入。(The MIF file is written to input the micromagnetic simulation software OOMMF.)
- 2020-04-07 11:20:50下载
- 积分:1
-
C# 局域网扫描IP 实例下载
局域网扫描IP 实例如下图
- 2013-01-23下载
- 积分:1
-
C #实现俄罗斯方块,具有任意形状可道…
用c#实现的俄罗斯方块,特点是可以定制任意形状的方块,并指定颜色。-With c# Realize the Russian box, characterized by arbitrary shape can be customized box and specify the color.
- 2022-01-28 05:45:29下载
- 积分:1
-
ov7670
改程序实现了以freescale的ms9s12x控制数字摄像头ov7670,及在两片5110上的显示。(Reform program implements to control the freescale ms9s12x digital camera ov7670, and the two on the 5110 display.)
- 2013-09-08 09:56:35下载
- 积分:1
-
atp5cmd
标准ATP命令的处理,用于手机的,高质量代码。(ATP standard order processing, for mobile phones, high-quality code.)
- 2008-01-19 09:51:52下载
- 积分:1
-
Timer
本程序为单片机80c51F040的定时器程序,希望对大家有所帮助!(The procedure for the SCM 80c51F040 timer program, we want to help!)
- 2011-06-27 18:05:32下载
- 积分:1
-
基于web的网页拼图游戏
基于web的网页拼图游戏,利用js,html,css,技术进行游戏开发,
- 2022-03-20 12:26:33下载
- 积分:1
-
curl
linux的ctrl库,可以方便调用库,curl_easy_setopt,curl_easy_init,curl_easy_perform,
- 2022-02-12 13:34:04下载
- 积分:1