dropdownlist如何与slqdatasource绑定以检索正确的值

本文关键字:检索 绑定 slqdatasource dropdownlist | 更新日期: 2023-09-27 18:25:55

我想从下拉列表中检索要为我的.cs编写的值。sqldatasource根据他/她拥有的帐户类型返回Saving Account或Current Account。

<asp:DropDownList ID="ddlPayBy2" runat="server" AutoPostBack="True" 
                            DataSourceID="SqlDataSource2" DataTextField="accountType" 
                            DataValueField="accountType">
                        </asp:DropDownList>
                        <asp:SqlDataSource ID="SqlDataSource2" runat="server" 
                            ConnectionString="<%$ ConnectionStrings:Oakhorizons %>" 
                            SelectCommand="SELECT [accountType] FROM [SavingAccount] WHERE ([custID] = @custID)">
                            <SelectParameters>
                                <asp:SessionParameter DefaultValue="OH00002" Name="custID" 
                                    SessionField="Session[&quot;custID&quot;]" Type="String" />
                            </SelectParameters>
                        </asp:SqlDataSource>

它什么也没还给我。我试过了,但没有任何回报。我总是得到else语句,我试图调试它,它说SelectedValue="

 if (ddlPayBy.SelectedValue == "Savings"){
          account = "Savings";
                                    }
 else if (ddlPayBy.SelectedValue == "Current")
                                    {
          account = "Current";
                                    }
 else
                                    {
          Alert.Show("Please choose your account type properly");
                                    }

dropdownlist如何与slqdatasource绑定以检索正确的值

我已经有一段时间没有使用sqldatasource对象了,所以请原谅我,但您是否缺少了一些简单的东西,比如没有将控件绑定到数据源对象。

也许您的参数设置不正确。您有权访问SQL事件探查器吗?检查您的查询是否正在运行,并且使用正确的查询运行。。。

还有一个旁注。。。这个问题不是它,而是你的下拉列表的id="ddlPayBy2",但你正在检查(ddlPayBy.selected…