1

TLDR:出站规则不适用于更新面板部分回发


我正在使用 IIS 7.5 URL 重写器将图像路径映射到 cdn。

这是正在发生的事情的简化版本

<Repeater Goes Here>

    <img alt="alt text" src="<%#getImageSource(Eval("Filename").ToString() )%>">

<End of Repeater>

假设函数 getImageSource 返回"/images/someimage.jpg"

这反过来重写为

<img alt="alt text" src="http://img.cdn.com/someimage.jpg">

使这项工作的出站规则是:

    <rule name="Out_Rewrite_ServeCookieLessImages" preCondition="ResponseIsHtml" enabled="true">
      <match filterByTags="Img" pattern="^/Images/(.*)$"/>
      <action type="Rewrite" value="http://img.cdn.com/{R:1}"/>
    </rule>

    <preConditions>
      <preCondition name="ResponseIsHtml">
        <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html"/>
        <add input="{URL}" pattern="\.axd.*$" negate="true"/>
      </preCondition>
    </preConditions>

问题是在更新面板中使用中继器时

异步回发后输出的实际 html 是

<img alt="alt text" src="/Images/someimage.jpg">

代替

<img alt="alt text" src="http://img.cdn.com/someimage.jpg">

我如何让更新面板正确解析输出?

提前致谢


编辑:我在这一点上的猜测是它必须对页面生命周期做一些事情......或者也许调用重写模块的顺序......将保持更新

4

1 回答 1

3

使用 UpdatePanel 时服务器返回的响应内容类型是 text/plain 而不是 text/html。

您列出的 ResponseIsHtml 前提条件将仅匹配 text/html 内容,因此这就是不重写 UpdatePanel 响应的原因。

如果您修改输入正则表达式以捕获文本/纯文本,那么您的内容将被重写,因为它应该:

<preConditions>
  <preCondition name="ResponseIsHtml">
    <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/[html|plain]"/>
    <add input="{URL}" pattern="\.axd.*$" negate="true"/>
  </preCondition>
</preConditions>

不幸的是,这样做有一个问题,我还没有找到解决方案 - 重写响应会导致 UpdatePanel ajax 管理器抛出 ys.WebForms.PageRequestManagerParserErrorException。

于 2014-01-06T17:59:46.283 回答