2017-01-26 6 views
0

のために、私は次のエラー取得しています:パーサーエラーがRadioButtonListの

enter image description here

をして、このページのコードです:

<form id="form1" runat="server"> 
<div> 
    <asp:MultiView ID="MultiView1" runat="server"> 
     <asp:View ID="View1" runat="server"> 
      Choose a Foreground (Text) Color:<br/> 
      <asp:DropDownList ID="lstForeColor" runat="server" AutoPostBack="True" OnSelectedIndexChanged="LstForeColor_OnSelectedIndexChanged"></asp:DropDownList> 
      <br/><br/> 
      Choose a Background Color:<br/> 
      <asp:DropDownList ID="lstBackColor" runat="server" AutoPostBack="True" OnSelectedIndexChanged="lstBackColor_OnSelectedIndexChanged"></asp:DropDownList> 
     </asp:View> 
     <asp:View ID="View2" runat="server"> 
      Choose a Border Style:<br/> 
      <asp:RadioButtonList ID="lstBorder" runat="server" AutoPostBack="True" OnSelectedIndexChanged="lstBorder_OnSelectedIndexChanged" RepeatColumns="2"/> 
      <br/> 
      <asp:CheckBox ID="chkPictre" runat="server" AutoPostBack="True" OnCheckedChanged="chkPictre_OnCheckedChanged" Text="Add Deafult Picture"/> 
     </asp:View> 
     <asp:View ID="View3" runat="server"> 
      Choose a fint name:<br/> 
      <asp:DropDownList ID="lstFontName" runat="server"AutoPostBack="True" OnTextChanged="lstFontName_OnTextChanged"/> 
      <br/><br/> 
      Enter the greeting text Below:<br/> 
      <asp:TextBox ID="txtGreeting" runat="server" AutoPostBack="True" OnTextChanged="txtGreeting_OnTextChanged" TextMode="MultiLine"></asp:TextBox> 
     </asp:View> 
    </asp:MultiView> 
</div> 
</form> 

私はIDを変更しようとした、いくつかのプロパティを削除し、閉鎖を追加タグはありませんが、どちらも機能しませんでした。なぜこのエラーが発生するのでしょうか。

答えて

0

lstFontNameのプロパティ間にスペースがありません。

<asp:DropDownList ID="lstFontName" runat="server"AutoPostBack="True" OnTextChanged="lstFontName_OnTextChanged"/> 

<asp:DropDownList ID="lstFontName" runat="server" AutoPostBack="True" OnTextChanged="lstFontName_OnTextChanged"/> 

への変更にエラーメッセージが一部の人々は、コンパイラが作ることがないと言う間違ったline.stillに言及していた仕事をThanks.that runat="server"AutoPostBack="True"

+0

間、存在する必要があります間違い。 – Mohsen