java ashx_ashx文件的使用小结

一提到Ashx文件,我们就会想到http handler以及图片加载(在之前我们一般使用ASPX或者Webservice去做),一般做法如下:

Handler.ashx:

using System;

using System.IO;

using System.Web;

public class Handler : IHttpHandler {

public bool IsReusable {

get {

return true;

}

}

public void ProcessRequest (HttpContext context) {

context.Response.ContentType = "image/jpeg";

context.Response.Cache.SetCacheability(HttpCacheability.Public);

context.Response.BufferOutput = false;

PhotoSize size;

switch (context.Request.QueryString["Size"]) {

case "S":

size = PhotoSize.Small;

break;

case "M":

size = PhotoSize.Medium;

break;

case "L":

size = PhotoSize.Large;

break;

default:

size = PhotoSize.Original;

break;

}

Int32 id = -1;

Stream stream = null;

if (context.Request.QueryString["PhotoID"] != null && context.Request.QueryString["PhotoID"] != "") {

id = Convert.ToInt32(context.Request.QueryString["PhotoID"]);

stream = PhotoManager.GetPhoto(id, size);

} else {

id = Convert.ToInt32(context.Request.QueryString["AlbumID"]);

stream = PhotoManager.GetFirstPhoto(id, size);

}

if (stream == null) stream = PhotoManager.GetPhoto(size);

const int buffersize = 1024 * 16;

byte[] buffer = new byte[buffersize];

int count = stream.Read(buffer, 0, buffersize);

while (count > 0) {

context.Response.OutputStream.Write(buffer, 0, count);

count = stream.Read(buffer, 0, buffersize);

}

}

}

*.aspx:myHttpHander.ashx?id=123

我们变通以下,发现其实除了可以输出图片以外,还可以输出文字:

Handler.ashx:

using System;

using System.Web;

public class Handler : IHttpHandler {

public void ProcessRequest (HttpContext context) {

context.Response.ContentType = "text/plain";

context.Response.Write("alert('hi')");

}

public bool IsReusable {

get {

return false;

}

}

}

*.aspx:弹出alert

也可以把.ashx当成css文件

xml文件orderDoc.load("Handler.ashx");

还可以嵌入文字:

Handler.ashx:

using System;

using System.Web;

public class TestHandler : IHttpHandler {

public void ProcessRequest (HttpContext context) {

context.Response.ContentType = "text/plain";

context.Response.Write("document.write(\"Hello World\");");

}

public bool IsReusable {

get {

return false;

}

}

}

*.aspx:

当你希望从ashx或HttpHandler里访问你的Session时,你必须实现IReadOnlySessionState接口.

代码:

using System;

using System.Web;

using System.Web.SessionState;

public class DownloadHandler : IHttpHandler, IReadOnlySessionState

{

public bool IsReusable { get { return true; } }

public void ProcessRequest(HttpContext ctx)

{

ctx.Response.Write(ctx.Session["fred"]);

}

}

其实,学习的思路不应该这样,以上除了图片外,我们都用偏了,为什么用偏了呢,因为软件以简单、实用为主,我们只是把以上纯粹看成可一项技术而没有把它放到软件的地位去考虑:)

具体的用途,大家可以参考Rewirte.dll (这个dll,可以使服务器支持伪静态的)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值