C#DropDownlist默认值为-1但显示不正确

时间:2015-12-22 19:55:39

标签: c# drop-down-menu

我遇到了一个非常令人沮丧的问题,我希望每个人都可以提供帮助。

我有两套下拉列表;第一个是从数据库调用填充的,它只是一个唯一的客户端列表。第二个是服务人员名单;它应该被第一个下拉列表的结果过滤掉。

注意主要问题似乎是“DropdownListClient.SelectedIndex.ToString()”的第一个下拉列表结果显示值-1。但是,当启动网页时,下拉列表只有两个选项。

Value List Description 0 Green Tree 1 Chase

那么为什么Dropdownlist的DEFAULT选择值等于-1?我似乎找不到任何可以将默认值设置为下拉列表中显示的值的内容。

我背后的代码看起来像这样..

    protected void Page_Load(object sender, EventArgs e)
    {
        Label1.Text = User.Identity.Name;
        if (!Page.IsPostBack)
        {
Documenation_ClientProject.SelectParameters.Add("Personlookup",User.Identity.Name);
Documenation_ClientProject.SelectCommand = "SELECT distinct Clientname FROM [FileReviewProject] where personid=@Personlookup";
Label2.Text = DropDownListClient.SelectedIndex.ToString();
/*shows a -1 but should show a 0 (since the displayed result in the first    drop down list is the 0 value of green Tree*/
Documenation_ServicerProject.SelectParameters.Add("ServDef",    DropDownListClient.Text);
Documenation_ServicerProject.SelectCommand = "SELECT distinct LoanServicer    FROM [FileReviewProject] where clientname=@ServDef";

        }                         
    }

我的asp.net页面看起来像......

<asp:SqlDataSource ID="Documenation_ClientProject" runat="server"
 ConnectionString="<%$ ConnectionStrings:DEVSQLCATConnection%>"> 
</asp:SqlDataSource>

<asp:SqlDataSource ID="Documenation_ServicerProject" runat="server"
 ConnectionString="<%$ ConnectionStrings:DEVSQLCATConnection%>"> 
</asp:SqlDataSource>


<asp:DropDownList ID="DropDownListClient" runat="server" DataSourceID="Documenation_ClientProject" DataTextField="ClientName" DataValueField="ClientName" AutoPostBack="True" OnSelectedIndexChanged="DropDownListClient_SelectedIndexChanged">
</asp:DropDownList>

<asp:DropDownList ID="DropDownServicer" runat="server" DataSourceID="Documenation_ServicerProject" DataTextField="LoanServicer" DataValueField="LoanServicer">
  </asp:DropDownList>

1 个答案:

答案 0 :(得分:0)

尚未选择任何内容,因此DropdownListClient.SelectedIndex当然是-1,在设置DropdownListClient.SelectedIndex = 0之前将索引设置为0 Label2.Text并且您应该没问题。