将 aspx 页面转换为链接?

发布于 2024-12-10 13:49:33 字数 1053 浏览 0 评论 0原文

我在 XAML 中有以下内容:

<Setter Property="Source" Value="ResourceHttpHandler.aspx" />

我想在 HTTP 处理程序中执行的操作是发送回徽标的链接(例如 url.com/abc.png),并将 ResourceHttpHandler.aspx 替换为该徽标的链接。

这是我目前的尝试:

  public void ProcessRequest( HttpContext _HttpContext )
  {
     try
     {
        HttpRequest request = _HttpContext.Request;
        HttpResponse response = _HttpContext.Response;
        response.ContentType = MimeTypes.TextHTML;
        response.Cache.SetExpires( DateTime.Now );
        response.AppendHeader( "Content-Disposition", MimeDispositions.Inline );

        if( request.HttpMethod == WebRequestMethods.Http.Get )
        {
           response.Write("http://www.google.com/intl/en_com/images/srpr/logo3w.png");
           response.Flush();
        }
     }
     catch( Exception e )
     {
        _HttpContext.Response.Clear( );
        _HttpContext.Response.Write( HttpResponseString.CreateError( e.Message ) );
        _HttpContext.Response.Flush( );
     }
  }

我该怎么做?

I have the following in XAML:

<Setter Property="Source" Value="ResourceHttpHandler.aspx" />

What I'd like to do in the HTTP handler is send back a link to a logo (such as url.com/abc.png) and replace ResourceHttpHandler.aspx with the link to that logo.

This is my current attempt:

  public void ProcessRequest( HttpContext _HttpContext )
  {
     try
     {
        HttpRequest request = _HttpContext.Request;
        HttpResponse response = _HttpContext.Response;
        response.ContentType = MimeTypes.TextHTML;
        response.Cache.SetExpires( DateTime.Now );
        response.AppendHeader( "Content-Disposition", MimeDispositions.Inline );

        if( request.HttpMethod == WebRequestMethods.Http.Get )
        {
           response.Write("http://www.google.com/intl/en_com/images/srpr/logo3w.png");
           response.Flush();
        }
     }
     catch( Exception e )
     {
        _HttpContext.Response.Clear( );
        _HttpContext.Response.Write( HttpResponseString.CreateError( e.Message ) );
        _HttpContext.Response.Flush( );
     }
  }

How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

禾厶谷欠 2024-12-17 13:49:33

也许简单地重定向就可以解决您的问题。

Response.Redirect("http://www.google.com/intl/en_com/images/srpr/logo3w.png");

Perhaps simply redirecting would solve your problem.

Response.Redirect("http://www.google.com/intl/en_com/images/srpr/logo3w.png");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文