asp.net – 元素’system.webServer’有无效的子元素’重写’ 我应该解决这个问题,怎么办?

前端之家收集整理的这篇文章主要介绍了asp.net – 元素’system.webServer’有无效的子元素’重写’ 我应该解决这个问题,怎么办?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在IIS7中有很多重写规则,比如删除尾部的斜杠,标点的URL,小写字母等等。 IIS改变了我的web.config,一切都在网站上运行正常,就像它应该的一样。但是在Visual Studio web.config中,打开< rewrite>语句以蓝色加下划线,在VS的底部,它表示元素“system.webServer”具有无效的子元素“重写”。但这是IIS如何做…我没有手动这样做。我应该关心这个VS错误,还是应该像现在一样离开,因为它是如何工作的?

以下是我的web.config示例:

<system.webServer>
    <rewrite>         <-------------------- this is underlined in squiggly blue
        <rules>
            <rule name="RemoveASPX" enabled="true" stopProcessing="true">
                <match url="(.*)\.aspx" />
                <action type="Redirect" url="{R:1}" />
                <conditions logicalGrouping="MatchAll">
                    <add input="{URL}" pattern="(.*)/default.aspx" negate="true" />
                    <add input="{URL}" pattern="(.*)/admin/*" negate="true" />
                    <add input="{URL}" pattern="(.*)/desktopmodules/*" negate="true" />
                </conditions>
            </rule>

约有5或6个其他规则,然后关闭< /system.webServer\u0026gt;最后。

解决方法

这里更新的模式为我解决了这个问题。

http://ruslany.net/2009/08/visual-studio-xml-intellisense-for-url-rewrite-1-1/

确保更改VS2010的脚本:

ruslany responded on 20 Oct 2009 at 7:10 pm #

@Gene: This is be because the XML schema cache is located in a
different location in VS2010. Can you open the UpdateSchemaCache.js
and replace this line:

var vs9CommonTools = shell.ExpandEnvironmentStrings( “%VS90COMNTOOLS%”
);

with this line:

var vs9CommonTools = shell.ExpandEnvironmentStrings(
“%VS100COMNTOOLS%” );

After that try running the script and see if that helps.

原文链接:https://www.f2er.com/aspnet/253679.html

猜你在找的asp.Net相关文章