1

是否可以使用通用处理程序 (*.ashx) 返回 html,我可以在 div 标签中使用它?

就像是

<div id="foo"> [call my generic handler which returns some html to be used within this div ] </div>

在这种情况下,它不是图像,而只是 HTML。

谷歌搜索时没有发现任何东西。

4

1 回答 1

5

是的,您可以返回类似的内容:

public class CustomFormHandler : IHttpHandler {
    public void ProcessRequest (HttpContext context) {

        context.Response.ContentType = "text/html";
        context.Response.Write("<p>my html</p>");
    }
    public bool IsReusable {
        get {
            return false;
        }
    }
}
于 2013-05-23T13:56:59.517 回答