1

好吧,我几乎要退出这个 ASP.NET SHYTE.. ;( 我通常编写客户端代码,一切都非常简单.. 但是这个!?!

我不知道我要解决多少问题......无论如何我得到一个解析器错误,服务器标签没有很好地形成。

我已经在网上搜索了几个小时,我发现的提示范围从告诉我也使用单引号到退休作为程序员......

我试图显示一组单选按钮,并从我的数据库中获取数据。

代码隐藏看起来像这样..

protected void fillRepeater()
    {
        MySqlConnection con = new MySqlConnection(@"Server=hide.my.url;Database=no_database;Uid=topsecretuser;Pwd=topsecret");
        con.Open();
       //ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('" + con.State + "');", true);

        string sqlQ = "Select * from t_domains";

        MySqlCommand myCommand = new MySqlCommand(sqlQ, con);

        MySqlDataReader dataReader = myCommand.ExecuteReader();
        Repeater1.DataSource = dataReader;
        Repeater1.DataBind();
        con.Close();

    }

这是我的 HTML。我还没有实现我的表格行/单元格..(所以不要提醒我);)

  Repeater data!<br />
    <asp:Repeater ID="Repeater1" runat="server">
    <HeaderTemplate>  
    <table>  
    </HeaderTemplate>
    <ItemTemplate>
     <asp:RadioButton id="RadioButton1" runat="server" GroupName="<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>" value="50" Text="Free access" onclick="calculatePrice();disableTB(this.name);"  />
     <br />
    <asp:RadioButton id="RadioButton2"  GroupName="<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>" 
        Text="Once a day(30/month)" value="25" onclick="calculatePrice();disableTB(this.name);" />
         <br />
    <asp:RadioButton id="RadioButton3" GroupName="<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>"  value="0"
        Text="Enter number of articles" onclick="enableTB(this.name, this.checked)" />
         <br />
    <asp:TextBox ID="textbox" name="<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>" Enabled="false" Width="106px" 
        onkeyup="calculatePrice()" style="background-color:#eeeeee" ></asp:TextBox>




    </ItemTemplate>
    <FooterTemplate>
    </table>
    </FooterTemplate>
    </asp:Repeater>

错误它给我解析器错误消息:服务器标签格式不正确。

源错误:

   Line 36:   <asp:RadioButton id="RadioButton1" runat="server" GroupName="         <%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>" value="50" Text="Free access" onclick="calculatePrice();disableTB(this.name);"  />
4

2 回答 2

3

您应该将 <%# 之前的 " 替换为 '。这将防止 Eval 部分中的 " 不正确地结束您的字符串。

<asp:RadioButton id="RadioButton1" runat="server" GroupName='<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>' value="50" Text="Free access" onclick="calculatePrice();disableTB(this.name);"  />
 <br />
<asp:RadioButton id="RadioButton2"  GroupName='<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>' 
    Text="Once a day(30/month)" value="25" onclick="calculatePrice();disableTB(this.name);" />
     <br />
<asp:RadioButton id="RadioButton3" GroupName='<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>'  value="0"
    Text="Enter number of articles" onclick="enableTB(this.name, this.checked)" />
     <br />
<asp:TextBox ID="textbox" name='<%#DataBinder.Eval(Container.DataItem, "idtag_domain") %>' Enabled="false" Width="106px" 
    onkeyup="calculatePrice()" style="background-color:#eeeeee" ></asp:TextBox>
于 2012-08-26T22:57:37.940 回答
0

删除 和 之间的GroupName="空格<%

于 2012-08-26T22:57:39.797 回答