1

私は Dev Express ASPxComboBox を持っています:

<dx:ASPxComboBox runat="server" ID="DropDownListTemplates"
    DataSourceID="SqlDataSourceTemplates" ValueField="template_id" TextField="name" 
    ValueType="System.Int32" Enabled="false" Width="100%" SelectedIndex='<%# 
    Eval("subs_template") %>'/>

実行時に「指定されたキャストは有効なエラーではありません」をスローします。それはと関係があります

SelectedIndex='<%# Eval("subs_template") %>'

ただし、subs_template は数値であることが保証されています。

<asp:SqlDataSource ID="SqlDataSourceClientDetail" runat="server"
        ConnectionString="<%$ code: AutoNat.ConnectionManager.AutoNatConnectionString %>"
        SelectCommand="SELECT *, isnull(subs_template_id, 0) subs_template FROM [person] p WHERE [person_id]=@person_id">
        <SelectParameters>
            <asp:SessionParameter Name="person_id" SessionField="personID" Type="Int32" />
        </SelectParameters>
    </asp:SqlDataSource>

    <asp:SqlDataSource ID="SqlDataSourceTemplates" runat="server" ConnectionString="<%$ code: AutoNat.ConnectionManager.AutoNatConnectionString %>"
       SelectCommand="SELECT * FROM 
                      (SELECT t.template_id, name FROM subs_template t UNION SELECT 0, 'Custom...') s 
                      ORDER BY template_id">
     </asp:SqlDataSource>

なぜこれが失敗し続けるのですか?

私が試してみました

SelectedIndex='<%# 0 %>'

これはうまくいきます!

4

1 に答える 1

1

このような整数でキャストしてみましたか?Convert.ToInt32(Eval("subs_template"))

于 2011-09-26T09:22:08.510 に答える