久久久久久久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).

                經過一番查看,我發現這是因為缺少 Visual Studio 需要的 XSD 或架構文件,以便正確理解"web.config 文件中的架構并為其提供智能感知.

                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 提供適當的架構信息,或關閉這些消息?

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

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

                @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模板網!

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

                相關文檔推薦

                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(從函數調用按鈕 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. 主站蜘蛛池模板: 黄视频免费观看 | 久久久美女 | 久久精品成人 | 国产精品久久久久久久久久免费 | 国产资源网 | 一区二区在线不卡 | 免费视频二区 | 中文字幕a√ | 日韩高清国产一区在线 | 午夜精品久久久久久久99黑人 | 日韩资源 | 亚洲 中文 欧美 日韩 在线观看 | 国产香蕉视频在线播放 | 在线欧美亚洲 | 在线黄色影院 | 欧美亚州综合 | 久久69精品久久久久久久电影好 | 99精品欧美一区二区蜜桃免费 | 精品福利视频一区二区三区 | 欧美一级视频免费看 | 久久久国产一区二区三区 | 一区二区av | 亚洲精品亚洲人成人网 | 天天草天天干 | 日韩1区 | www.亚洲一区二区 | 天天看天天爽 | 夜夜操天天干 | 巨大荫蒂视频欧美另类大 | 亚洲欧美一区二区三区在线 | 国产99在线 | 欧美 | 99视频在线免费观看 | 久草视频网站 | 国产精品久久久久久久免费观看 | 视频第一区 | 99久久久久久 | 日韩在线观看中文字幕 | 欧美在线日韩 | 免费亚洲一区二区 | 91视频免费视频 | 国产成人久久av免费高清密臂 |