久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<i id='zqiFo'><tr id='zqiFo'><dt id='zqiFo'><q id='zqiFo'><span id='zqiFo'><b id='zqiFo'><form id='zqiFo'><ins id='zqiFo'></ins><ul id='zqiFo'></ul><sub id='zqiFo'></sub></form><legend id='zqiFo'></legend><bdo id='zqiFo'><pre id='zqiFo'><center id='zqiFo'></center></pre></bdo></b><th id='zqiFo'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='zqiFo'><tfoot id='zqiFo'></tfoot><dl id='zqiFo'><fieldset id='zqiFo'></fieldset></dl></div>

    1. <legend id='zqiFo'><style id='zqiFo'><dir id='zqiFo'><q id='zqiFo'></q></dir></style></legend>
    2. <small id='zqiFo'></small><noframes id='zqiFo'>

    3. <tfoot id='zqiFo'></tfoot>
        <bdo id='zqiFo'></bdo><ul id='zqiFo'></ul>

      如何解決“找不到元素/屬性&lt;xxx&gt;的模式

      How to resolve quot;Could not find schema information for the element/attribute lt;xxxgt;quot;?(如何解決“找不到元素/屬性lt;xxxgt;的模式信息?)
      • <bdo id='O7kNH'></bdo><ul id='O7kNH'></ul>

                <tbody id='O7kNH'></tbody>
            1. <tfoot id='O7kNH'></tfoot>

                <small id='O7kNH'></small><noframes id='O7kNH'>

              1. <legend id='O7kNH'><style id='O7kNH'><dir id='O7kNH'><q id='O7kNH'></q></dir></style></legend>

              2. <i id='O7kNH'><tr id='O7kNH'><dt id='O7kNH'><q id='O7kNH'><span id='O7kNH'><b id='O7kNH'><form id='O7kNH'><ins id='O7kNH'></ins><ul id='O7kNH'></ul><sub id='O7kNH'></sub></form><legend id='O7kNH'></legend><bdo id='O7kNH'><pre id='O7kNH'><center id='O7kNH'></center></pre></bdo></b><th id='O7kNH'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='O7kNH'><tfoot id='O7kNH'></tfoot><dl id='O7kNH'><fieldset id='O7kNH'></fieldset></dl></div>

                本文介紹了如何解決“找不到元素/屬性&lt;xxx&gt;的模式信息"?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                限時送ChatGPT賬號..

                在 Visual Studio 中,我有一個使用 MS Enterprise Library 4.0 應用程序塊的 asp.net 3.5 項目.

                In visual studio, I have an asp.net 3.5 project that is using MS Enterprise Library 4.0 application blocks.

                當我打開我的 web 配置文件時,我的錯誤列表會填滿 99 條消息,其中包含諸如

                When I have my web config file open, my Error list fills up with 99 messages with things like

                Could not find schema information for the element 'dataConfiguration'.  
                Could not find schema information for the attribute 'defaultDatabase'.  
                Could not find schema information for the element 'loggingConfiguration'.   
                Could not find schema information for the attribute 'tracingEnabled'.   
                Could not find schema information for the attribute 'defaultCategory'.  
                

                如果我關閉 Web.config 文件,它們就會消失(但一旦我需要再次打開文件,它們就會回來).

                If I close the Web.config file they go away (but they come back as soon as I need to open the file again).

                經(jīng)過一番查看,我發(fā)現(xiàn)這是因為缺少 Visual Studio 需要的 XSD 或架構(gòu)文件,以便正確理解"web.config 文件中的架構(gòu)并為其提供智能感知.

                After doing some looking, I found that this is becauase there is an XSD or schema file missing that Visual Studio needs in order to properly 'understand' the schema that is in the web.config file and provide intellisense for it.

                有誰知道如何為 VS 提供適當?shù)募軜?gòu)信息,或關閉這些消息?

                Does anyone know how to either supply VS with the appropriate schema information, or to turn off these messages?

                @Franci - 感謝您提供信息,我已經(jīng)嘗試過該工具以及 MMC 管理單元(它們往往會破壞 Web.config 中的格式),但它們?nèi)匀粺o法解決我收到的惱人警告.感謝您的嘗試.

                @Franci - Thanks for the info, I have tried that tool as well as the MMC snap in (they tend to blow up the formatting in the Web.config) but they still do not resolve the irritating warnings I receive. Thanks for trying.

                推薦答案

                我使用 EntLib 配置工具配置了 app.config 并設置了我的 LoggingConfiguration 塊.然后我將它復制到 DotNetConfig.xsd 中.當然,它并沒有涵蓋所有屬性,只涵蓋我添加的屬性,但它不再顯示那些煩人的信息消息.

                I configured the app.config with the tool for EntLib configuration and set up my LoggingConfiguration block. Then I copied this into the DotNetConfig.xsd. Of course, it does not cover all attributes, only the ones I added but it does not display those annoying info messages anymore.

                <xs:element name="loggingConfiguration">
                  <xs:complexType>
                    <xs:sequence>
                      <xs:element name="listeners">
                        <xs:complexType>
                          <xs:sequence>
                            <xs:element maxOccurs="unbounded" name="add">
                              <xs:complexType>
                                <xs:attribute name="fileName" type="xs:string" use="required" />
                                <xs:attribute name="footer" type="xs:string" use="required" />
                                <xs:attribute name="formatter" type="xs:string" use="required" />
                                <xs:attribute name="header" type="xs:string" use="required" />
                                <xs:attribute name="rollFileExistsBehavior" type="xs:string" use="required" />
                                <xs:attribute name="rollInterval" type="xs:string" use="required" />
                                <xs:attribute name="rollSizeKB" type="xs:unsignedByte" use="required" />
                                <xs:attribute name="timeStampPattern" type="xs:string" use="required" />
                                <xs:attribute name="listenerDataType" type="xs:string" use="required" />
                                <xs:attribute name="traceOutputOptions" type="xs:string" use="required" />
                                <xs:attribute name="filter" type="xs:string" use="required" />
                                <xs:attribute name="type" type="xs:string" use="required" />
                                <xs:attribute name="name" type="xs:string" use="required" />
                              </xs:complexType>
                            </xs:element>
                          </xs:sequence>
                        </xs:complexType>
                      </xs:element>
                      <xs:element name="formatters">
                        <xs:complexType>
                          <xs:sequence>
                            <xs:element name="add">
                              <xs:complexType>
                                <xs:attribute name="template" type="xs:string" use="required" />
                                <xs:attribute name="type" type="xs:string" use="required" />
                                <xs:attribute name="name" type="xs:string" use="required" />
                              </xs:complexType>
                            </xs:element>
                          </xs:sequence>
                        </xs:complexType>
                      </xs:element>
                      <xs:element name="logFilters">
                        <xs:complexType>
                          <xs:sequence>
                            <xs:element name="add">
                              <xs:complexType>
                                <xs:attribute name="enabled" type="xs:boolean" use="required" />
                                <xs:attribute name="type" type="xs:string" use="required" />
                                <xs:attribute name="name" type="xs:string" use="required" />
                              </xs:complexType>
                            </xs:element>
                          </xs:sequence>
                        </xs:complexType>
                      </xs:element>
                      <xs:element name="categorySources">
                        <xs:complexType>
                          <xs:sequence>
                            <xs:element maxOccurs="unbounded" name="add">
                              <xs:complexType>
                                <xs:sequence>
                                  <xs:element name="listeners">
                                    <xs:complexType>
                                      <xs:sequence>
                                        <xs:element name="add">
                                          <xs:complexType>
                                            <xs:attribute name="name" type="xs:string" use="required" />
                                          </xs:complexType>
                                        </xs:element>
                                      </xs:sequence>
                                    </xs:complexType>
                                  </xs:element>
                                </xs:sequence>
                                <xs:attribute name="switchValue" type="xs:string" use="required" />
                                <xs:attribute name="name" type="xs:string" use="required" />
                              </xs:complexType>
                            </xs:element>
                          </xs:sequence>
                        </xs:complexType>
                      </xs:element>
                      <xs:element name="specialSources">
                        <xs:complexType>
                          <xs:sequence>
                            <xs:element name="allEvents">
                              <xs:complexType>
                                <xs:attribute name="switchValue" type="xs:string" use="required" />
                                <xs:attribute name="name" type="xs:string" use="required" />
                              </xs:complexType>
                            </xs:element>
                            <xs:element name="notProcessed">
                              <xs:complexType>
                                <xs:attribute name="switchValue" type="xs:string" use="required" />
                                <xs:attribute name="name" type="xs:string" use="required" />
                              </xs:complexType>
                            </xs:element>
                            <xs:element name="errors">
                              <xs:complexType>
                                <xs:sequence>
                                  <xs:element name="listeners">
                                    <xs:complexType>
                                      <xs:sequence>
                                        <xs:element name="add">
                                          <xs:complexType>
                                            <xs:attribute name="name" type="xs:string" use="required" />
                                          </xs:complexType>
                                        </xs:element>
                                      </xs:sequence>
                                    </xs:complexType>
                                  </xs:element>
                                </xs:sequence>
                                <xs:attribute name="switchValue" type="xs:string" use="required" />
                                <xs:attribute name="name" type="xs:string" use="required" />
                              </xs:complexType>
                            </xs:element>
                          </xs:sequence>
                        </xs:complexType>
                      </xs:element>
                    </xs:sequence>
                    <xs:attribute name="name" type="xs:string" use="required" />
                    <xs:attribute name="tracingEnabled" type="xs:boolean" use="required" />
                    <xs:attribute name="defaultCategory" type="xs:string" use="required" />
                    <xs:attribute name="logWarningsWhenNoCategoriesMatch" type="xs:boolean" use="required" />
                  </xs:complexType>
                </xs:element>
                

                這篇關于如何解決“找不到元素/屬性&lt;xxx&gt;的模式信息"?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                相關文檔推薦

                Deleting a directory when clicked on a hyperlink with JAvascript.ASP.NET C#(單擊帶有 JAvascript.ASP.NET C# 的超鏈接時刪除目錄)
                asp.net listview highlight row on click(asp.net listview 在單擊時突出顯示行)
                Calling A Button OnClick from a function(從函數(shù)調(diào)用按鈕 OnClick)
                ASP.net C# Gridview ButtonField onclick event(ASP.net C# Gridview ButtonField onclick 事件)
                Adding OnClick event to ASP.NET control(將 OnClick 事件添加到 ASP.NET 控件)
                Multiple submit Button click problem?(多個提交按鈕點擊問題?)

                  1. <i id='v872D'><tr id='v872D'><dt id='v872D'><q id='v872D'><span id='v872D'><b id='v872D'><form id='v872D'><ins id='v872D'></ins><ul id='v872D'></ul><sub id='v872D'></sub></form><legend id='v872D'></legend><bdo id='v872D'><pre id='v872D'><center id='v872D'></center></pre></bdo></b><th id='v872D'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='v872D'><tfoot id='v872D'></tfoot><dl id='v872D'><fieldset id='v872D'></fieldset></dl></div>

                      <small id='v872D'></small><noframes id='v872D'>

                    • <tfoot id='v872D'></tfoot>
                        <bdo id='v872D'></bdo><ul id='v872D'></ul>

                            <tbody id='v872D'></tbody>
                        1. <legend id='v872D'><style id='v872D'><dir id='v872D'><q id='v872D'></q></dir></style></legend>

                        2. 主站蜘蛛池模板: 99热精品6 | 一二三四在线视频观看社区 | 中文字幕一区在线 | 亚洲国产精品一区二区久久 | 国产成人高清在线观看 | 国产福利在线小视频 | 日韩精品视频在线 | 九九久久国产 | 久草网站| 亚洲二区视频 | 日韩视频精品在线 | 婷婷福利视频导航 | 国产精品一区二区在线 | 久久久入口 | 国产精品国产三级国产aⅴ无密码 | 婷婷精品 | 久久综合久色欧美综合狠狠 | 亚洲综合区 | 亚洲丝袜天堂 | 91中文在线观看 | 久久爱综合 | 日韩在线视频一区 | 久久成人精品视频 | 日本 欧美 三级 高清 视频 | 精品国产一区二区国模嫣然 | 男人天堂国产 | 国产黑丝在线 | 97超碰在线免费 | 一区二区三区四区国产 | 毛片一区二区 | 免费的色网站 | 99久久久无码国产精品 | 国产精品毛片久久久久久久 | av一区二区三区在线观看 | 精品精品 | a看片| 欧美5区 | 久久精品小视频 | 亚洲一区二区精品视频 | 亚洲国产高清高潮精品美女 | 91精品国产欧美一区二区成人 |