CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
山寨机中的战斗机! 程序优化工程师到底对IT界有没有贡献
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  .NET技术 >  ASP.NET

schema验证有关

楼主kokokokokoko(速追)2005-01-28 18:03:43 在 .NET技术 / ASP.NET 提问

我用FormSchema.xsd验证15000004.xml始终通不过,是用一个验证别的xml通过了的程式验证的,我怀懝是xml错了,但我不太熟xml,请大家帮我看看。  
  FormSchema.xsd如下  
  <?xml   version="1.0"   encoding="utf-8"   ?>  
  <xs:schema   id="FormSchema"   targetNamespace="http://tempuri.org/FormSchema.xsd"   elementFormDefault="qualified"  
  xmlns="http://tempuri.org/FormSchema.xsd"   xmlns:mstns="http://tempuri.org/FormSchema.xsd"  
  xmlns:xs="http://www.w3.org/2001/XMLSchema">  
  <xs:element   name="Form">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="Logo"   minOccurs="0"   maxOccurs="1">  
  <xs:complexType>  
  <xs:attribute   name="ImageUrl"   type="xs:string"   />  
  <xs:attribute   name="LogoID"   type="xs:string"   />  
  <xs:attribute   name="LogoName"   type="xs:string"   />  
  <xs:attribute   name="Desc"   type="xs:string"   use="optional"   />  
  </xs:complexType>  
  </xs:element>  
  <xs:element   name="PageComments"   maxOccurs="1"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="InnerHtml"   type="xs:string"   minOccurs="0"   maxOccurs="1"   />  
  </xs:sequence>  
  <xs:attribute   name="CommentsID"   type="xs:string"   />  
  <xs:attribute   name="CommentsName"   type="xs:string"   />  
  </xs:complexType>  
  </xs:element>  
  <xs:element   name="SectionGroup"   minOccurs="0"   maxOccurs="1">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="Section"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="ControlGroup"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="Control"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="ExtProperty"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="property">  
  <xs:complexType>  
  <xs:sequence   />  
  <xs:attribute   name="key"   type="xs:string"   />  
  <xs:attribute   name="value"   type="xs:string"   />  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  </xs:complexType>  
  </xs:element>  
  <xs:element   name="ExtStyle"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="style">  
  <xs:complexType>  
  <xs:sequence   />  
  <xs:attribute   name="key"   type="xs:string"   />  
  <xs:attribute   name="value"   type="xs:string"   />  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  <xs:attribute   name="DataItemID"   type="xs:string"   use="optional"   />  
  <xs:attribute   name="ControlID"   type="xs:string"   use="required"   />  
  <xs:attribute   name="ControlName"   type="xs:string"   use="optional"   />  
  <xs:attribute   name="ControlType"   use="optional">  
  <xs:simpleType>  
  <xs:restriction   base="xs:string">  
  <xs:enumeration   value="FBTextBox"   />  
  <xs:enumeration   value="FBLabel"   />  
  <xs:enumeration   value="FBImage"   />  
  <xs:enumeration   value="FBDropDownList"   />  
  <xs:enumeration   value="FBPanel"   />  
  <xs:enumeration   value="FBDiv"   />  
  <xs:enumeration   value="FBUndefined"   />  
  <xs:enumeration   value="FBUserControl"   />  
  <xs:enumeration   value="PMFBUserImage"   />  
  <xs:enumeration   value="FBCheckBox"   />  
  <xs:enumeration   value="FBCheckBoxList"   />  
  <xs:enumeration   value="FBPopupCheckBoxList"   />  
  </xs:restriction>  
  </xs:simpleType>  
  </xs:attribute>  
  <xs:attribute   name="CssClass"   type="xs:string"   use="optional"   />  
  <xs:attribute   name="posX"   type="xs:string"   />  
  <xs:attribute   name="posY"   type="xs:string"   />  
  <xs:attribute   name="width"   type="xs:string"   />  
  <xs:attribute   name="height"   type="xs:string"   />  
  <xs:attribute   name="visible"   type="xs:boolean"   default="true"></xs:attribute>  
  <xs:attribute   name="editable"   type="xs:boolean"   default="true"   />  
  <xs:attribute   name="IsStandControl"   type="xs:boolean"   default="true"   />  
  <xs:attribute   name="SystemRequired"   type="xs:boolean"   use="optional"   />  
  <xs:attribute   name="Required"   type="xs:boolean"   use="optional"   />  
  <xs:attribute   name="FixedSize"   type="xs:boolean"   use="optional"   />  
  <xs:attribute   name="NeedUpdateLabel"   type="xs:boolean"   use="optional"   />  
  <xs:attribute   name="LockedPosition"   type="xs:boolean"   use="optional"   />  
  <xs:attribute   name="UseDataDictionaryLabel"   type="xs:boolean"   use="optional"   />  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  </xs:complexType>  
  </xs:element>  
  <xs:element   name="SecExtProperty"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="SecProperty"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence   />  
  <xs:attribute   name="key"   type="xs:string"   />  
  <xs:attribute   name="value"   type="xs:string"   />  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  </xs:complexType>  
  </xs:element>  
  <xs:element   name="SecExtStyle"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence>  
  <xs:element   name="SecStyle"   minOccurs="0">  
  <xs:complexType>  
  <xs:sequence></xs:sequence>  
  <xs:attribute   name="key"   type="xs:string"   />  
  <xs:attribute   name="value"   type="xs:string"   />  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  <xs:attribute   name="SectionID"   type="xs:string"   />  
  <xs:attribute   name="SectionName"   type="xs:string"   />  
  <xs:attribute   name="OrderNo"   type="xs:int"   />  
  <xs:attribute   name="CssClass"   type="xs:string"   use="optional"   />  
  <xs:attribute   name="visible"   type="xs:boolean"   default="true"   />  
  <xs:attribute   name="width"   type="xs:string"   use="optional"   />  
  <xs:attribute   name="height"   type="xs:string"   use="optional"   />  
  <xs:attribute   name="SectionControlID"   type="xs:string"   />  
  <xs:attribute   name="editable"   type="xs:string"   />  
  <xs:attribute   name="IsStandardSection"   type="xs:boolean"   use="optional"   default="true"   />  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  </xs:complexType>  
  </xs:element>  
  </xs:sequence>  
  <xs:attribute   name="FormID"   type="xs:string"   />  
  <xs:attribute   name="BaseFormID"   type="xs:string"   />  
  <xs:attribute   name="FormName"   type="xs:string"   />  
  <xs:attribute   name="Module">  
  <xs:simpleType>  
  <xs:restriction   base="xs:string">  
  <xs:enumeration   value="PM"   />  
  <xs:enumeration   value="FT"   />  
  <xs:enumeration   value="LIB"   />  
  </xs:restriction>  
  </xs:simpleType>  
  </xs:attribute>  
  </xs:complexType>  
  </xs:element>  
  </xs:schema>  
  问题点数:100、回复次数:7Top

1 楼kokokokokoko(速追)回复于 2005-01-28 18:06:02 得分 0

15000004.xml如下:  
  <?xml   version="1.0"?>  
  <Form    
    xsi:schemaLocation="http://tempuri.org/FormSchema.xsd    
                  Schemas/FormSchema.xsd"    
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  xmlns="http://tempuri.org/FormSchema.xsd"  
  FormID="15000004"   FormName="htesta"   BaseFormID="32"   Module="pm">  
      <SectionGroup>  
          <Section   SectionID="pnlSectionForBomHeader"   width="800px"   height="200px"   SectionName="pnlSectionForBomHeader"   SectionControlID="pnlSectionForBomHeader"   OrderNo="0"   IsStandardSection="true"   visible="true"   editable="true">  
              <ControlGroup>  
                  <Control   ControlID="labelDesignID"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelDesignID"   ControlType="FBLabel"   DataItemID=""   posX="582px"   posY="8px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Design   ID"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelStatus"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelStatus"   ControlType="FBLabel"   DataItemID=""   posX="704px"   posY="8px"   width="96px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Status"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelSeason"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelSeason"   ControlType="FBLabel"   DataItemID=""   posX="128px"   posY="56px"   width="88px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Season"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelProductNo"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelProductNo"   ControlType="FBLabel"   DataItemID=""   posX="128px"   posY="8px"   width="88px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Product   #"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelParentVariationID"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelParentVariationID"   ControlType="FBLabel"   DataItemID=""   posX="218px"   posY="8px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Parent   Variation   ID"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelVarationID"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelVarationID"   ControlType="FBLabel"   DataItemID=""   posX="338px"   posY="8px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Varation   ID"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelVarationReason"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelVarationReason"   ControlType="FBLabel"   DataItemID=""   posX="460px"   posY="8px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Varation   Reason"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelProductType"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelProductType"   ControlType="FBLabel"   DataItemID=""   posX="218px"   posY="56px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Product   Type"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelMerchGroup"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelMerchGroup"   ControlType="FBLabel"   DataItemID=""   posX="338px"   posY="56px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
  Top

2 楼kokokokokoko(速追)回复于 2005-01-28 18:06:22 得分 0

<ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Merch   Group"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelShortDescription"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelShortDescription"   ControlType="FBLabel"   DataItemID=""   posX="128px"   posY="132px"   width="208px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Short   Description"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelBrand"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelBrand"   ControlType="FBLabel"   DataItemID=""   posX="338px"   posY="132px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Brand"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelDivision"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelDivision"   ControlType="FBLabel"   DataItemID=""   posX="460px"   posY="132px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Division"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="labelDepartment"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_labelDepartment"   ControlType="FBLabel"   DataItemID=""   posX="582px"   posY="132px"   width="120px"   height="16px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtStyle>  
                          <style   key="font"   value="Arial"   />  
                          <style   key="font-size"   value="9pt"   />  
                          <style   key="font-weight"   value="bold"   />  
                          <style   key="font-style"   value="normal"   />  
                          <style   key="color"   value="#000000"   />  
                          <style   key="text-align"   value="left"   />  
                          <style   key="vAlign"   value="middle"   />  
                      </ExtStyle>  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Department"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="pnlImgProduct"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlImgProduct"   ControlType="PMFBUserImage"   DataItemID=""   posX="8px"   posY="8px"   width="96px"   height="96px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlViewImages"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlViewImages"   ControlType="FBPanel"   DataItemID=""   posX="20px"   posY="132px"   width="76px"   height="16px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlProductNo"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlProductNo"   ControlType="FBDiv"   DataItemID=""   posX="128px"   posY="26px"   width="88px"   height="24px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlParentVariationID"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlParentVariationID"   ControlType="FBDiv"   DataItemID=""   posX="218px"   posY="26px"   width="120px"   height="24px"   visible="true"   editable="true"   IsStandControl="true"   />  
  Top

3 楼kokokokokoko(速追)回复于 2005-01-28 18:06:35 得分 0

<Control   ControlID="pnlVarationID"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlVarationID"   ControlType="FBDiv"   DataItemID=""   posX="338px"   posY="26px"   width="120px"   height="24px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlVarationReason"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlVarationReason"   ControlType="FBDiv"   DataItemID=""   posX="460px"   posY="26px"   width="120px"   height="24px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlProductSizeCombination"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlProductSizeCombination"   ControlType="FBDiv"   DataItemID=""   posX="460px"   posY="56px"   width="340px"   height="74px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlDesignID"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlDesignID"   ControlType="FBDiv"   DataItemID=""   posX="582px"   posY="26px"   width="120px"   height="24px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlStatus"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlStatus"   ControlType="FBDiv"   DataItemID=""   posX="704px"   posY="26px"   width="96px"   height="24px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlSeason"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlSeason"   ControlType="FBDiv"   DataItemID=""   posX="128px"   posY="74px"   width="88px"   height="56px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlProductType"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlProductType"   ControlType="FBDiv"   DataItemID=""   posX="218px"   posY="74px"   width="120px"   height="56px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlMerchGroup"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlMerchGroup"   ControlType="FBDiv"   DataItemID=""   posX="338px"   posY="74px"   width="120px"   height="56px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlShortDescription"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlShortDescription"   ControlType="FBDiv"   DataItemID=""   posX="128px"   posY="150px"   width="208px"   height="80px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlBrand"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlBrand"   ControlType="FBDiv"   DataItemID=""   posX="338px"   posY="150px"   width="120px"   height="80px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlDivision"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlDivision"   ControlType="FBDiv"   DataItemID=""   posX="460px"   posY="150px"   width="120px"   height="80px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="pnlDepartment"   ControlName="ctlTabs_ctlHome__ctl0_ProductMasterInfo1_pnlDepartment"   ControlType="FBDiv"   DataItemID=""   posX="582px"   posY="150px"   width="120px"   height="80px"   visible="true"   editable="true"   IsStandControl="true"   />  
              </ControlGroup>  
              <SecExtStyle>  
                  <SecStyle   key="background-color"   value="#FFFFFF"   />  
              </SecExtStyle>  
          </Section>  
          <Section   SectionID="pnlSectionOfTotalCost"   width="800px"   height="114px"   SectionName="pnlSectionOfTotalCost"   SectionControlID="pnlSectionOfTotalCost"   OrderNo="1"   IsStandardSection="true"   visible="true"   editable="true">  
              <ControlGroup>  
                  <Control   ControlID="pnlTotalCostHyperLink"   ControlName="ctlTabs_ctlHome__ctl0_pnlTotalCostHyperLink"   ControlType="FBPanel"   DataItemID=""   posX="0px"   posY="0px"   width="800px"   height="36px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="lblTotalCost"   ControlName="ctlTabs_ctlHome__ctl0_lblTotalCost"   ControlType="FBLabel"   DataItemID=""   posX="8px"   posY="48px"   width="64px"   height="24px"   visible="true"   editable="true"   IsStandControl="true">  
                      <ExtProperty>  
                          <property   key="LabelText"   value="Total   Cost"   />  
                      </ExtProperty>  
                  </Control>  
                  <Control   ControlID="txtTotalCost"   ControlName="ctlTabs_ctlHome__ctl0_txtTotalCost"   ControlType="FBTextBox"   DataItemID=""   posX="8px"   posY="80px"   width="144px"   height="24px"   visible="true"   editable="true"   IsStandControl="true"   />  
              </ControlGroup>  
              <SecExtStyle>  
                  <SecStyle   key="background-color"   value="#FFFFFF"   />  
              </SecExtStyle>  
          </Section>  
          <Section   SectionID="pnlSectionForDetail"   width="800px"   height="190px"   SectionName="pnlSectionForDetail"   SectionControlID="pnlSectionForDetail"   OrderNo="2"   IsStandardSection="true"   visible="true"   editable="true">  
              <ControlGroup>  
                  <Control   ControlID="pnlDetailHyperLink"   ControlName="ctlTabs_ctlHome__ctl0_pnlDetailHyperLink"   ControlType="FBPanel"   DataItemID=""   posX="0px"   posY="0px"   width="472px"   height="36px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="SectionForBomDetails"   ControlName="ctlTabs_ctlHome__ctl0_SectionForBomDetails"   ControlType="FBPanel"   DataItemID=""   posX="0px"   posY="40px"   width="798px"   height="146px"   visible="true"   editable="true"   IsStandControl="true"   />  
              </ControlGroup>  
              <SecExtStyle>  
                  <SecStyle   key="background-color"   value="#FFFFFF"   />  
              </SecExtStyle>  
          </Section>  
          <Section   SectionID="pnlSectionForAttachment"   width="800px"   height="114px"   SectionName="pnlSectionForAttachment"   SectionControlID="pnlSectionForAttachment"   OrderNo="3"   IsStandardSection="true"   visible="true"   editable="true">  
              <ControlGroup>  
                  <Control   ControlID="AttachmentHyperLink"   ControlName="ctlTabs_ctlHome__ctl0_AttachmentHyperLink"   ControlType="FBPanel"   DataItemID=""   posX="0px"   posY="0px"   width="424px"   height="34px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="UpdateAttachmentHyperLink"   ControlName="ctlTabs_ctlHome__ctl0_UpdateAttachmentHyperLink"   ControlType="FBPanel"   DataItemID=""   posX="632px"   posY="8px"   width="160px"   height="34px"   visible="true"   editable="true"   IsStandControl="true"   />  
                  <Control   ControlID="SectionForBomAttachment"   ControlName="ctlTabs_ctlHome__ctl0_SectionForBomAttachment"   ControlType="FBPanel"   DataItemID=""   posX="0px"   posY="40px"   width="800px"   height="86px"   visible="true"   editable="true"   IsStandControl="true"   />  
              </ControlGroup>  
              <SecExtStyle>  
                  <SecStyle   key="background-color"   value="#FFFFFF"   />  
              </SecExtStyle>  
          </Section>  
          <Section   SectionID="UD_Section_01"   width="800px"   height="200px"   SectionName="additional   section"   SectionControlID="UD_Section_01"   OrderNo="5"   IsStandardSection="false"   visible="false"   editable="true">  
              <ControlGroup   />  
              <SecExtStyle>  
                  <SecStyle   key="background-color"   value="#FFFFFF"   />  
              </SecExtStyle>  
          </Section>  
      </SectionGroup>  
  </Form>  
  资料很长,呵呵!Top

4 楼AllenTing(今天你GC了吗???)回复于 2005-01-28 18:43:50 得分 90

你用editplus打开查吧,可以不同颜色显示的,这样看的确...Top

5 楼jackie615()回复于 2005-01-28 18:49:58 得分 10

upTop

6 楼kokokokokoko(速追)回复于 2005-02-01 11:14:38 得分 0

那位好心人给看看啊,这样是难看,但只要拷下到本地来,是有格式的啊,很好看的,拜托各位了!Top

7 楼kokokokokoko(速追)回复于 2005-02-01 15:57:46 得分 0

upTop

相关问题

  • 有关验证的问题
  • 有关登陆验证的问题????
  • 有关.net Windows验证的问题
  • 有关国际电话号码验证
  • 有关MD5密码验证!~!~!郁闷~!~!~!
  • 这个怎么实现?有关验证的。
  • 有关身份验证登录的问题
  • 基于 Windows 的身份验证有关问题?
  • 有关验证的问题。。再线等待
  • 一个有关窗体验证的问题:100分求救!

关键词

  • 验证
  • xml
  • formschema
  • xsd
  • 看看

得分解答快速导航

  • 帖主:kokokokokoko
  • AllenTing
  • jackie615

相关链接

  • CSDN .NET频道
  • .NET类图书
  • C#类图书
  • .NET类源码下载

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
北京创新乐知广告有限公司 版权所有, 京 ICP 证 070598 号
世纪乐知(北京)网络技术有限公司 提供技术支持
Copyright © 2000-2008, CSDN.NET, All Rights Reserved
GongshangLogo