0

好吧,我想从下拉列表中检索值以写入我的 .cs。sqldatasource 根据他/她拥有的帐户类型返回储蓄帐户或当前帐户。

<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");
                                    }
4

1 回答 1

0

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

也许您的参数设置不正确。您可以访问 SQL Profiler 吗?检查并查看您的查询是否正在运行并使用正确的查询运行...

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

于 2013-08-01T05:17:40.210 回答