0

我有一个快速的问题。我有一个 dropDownList,我试图从存储过程中填充 id。但是,它似乎不起作用。这是我的下拉列表:

 <div id="newExpenseTypeDialog" style="display:none;">
        <label>Select new CaseFile:</label>
        <asp:DropDownList runat="server" ID="ddlCaseFiles" DataSourceID="dsMyCaseFiles" DataTextField="Display" DataValueField="FileID" OnPreRender="ddl_PreRender" Width="524px" />
</div>

这是我的数据源:

<asp:SqlDataSource ID="dsMyCaseFiles" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" ProviderName="System.Data.SqlClient" SelectCommand="p_CaseFiles_ListActiveCaseFilesAssignedTo" SelectCommandType="StoredProcedure">
    <SelectParameters>
        <asp:SessionParameter Name="InvestigatorID" SessionField="InvestigatorID" />
        <asp:SessionParameter Name="AssignedTo" SessionField="InvestigatorID" />
    </SelectParameters>
</asp:SqlDataSource>

我的存储过程需要两个参数。InvestigatorID 和 AssignedTo。然后它将找到返回所有匹配的 FileID。

现在这是我的 .aspx.cs 侧代码:(Page_load)

if (Request.QueryString["ExpenseID"] != null)
    {
        if (!IsPostBack)
        {
            ddlCaseFiles.DataSourceID = "dsCaseFiles";
            ddlCaseFiles.DataTextField = "Display";
            ddlCaseFiles.DataValueField = "FileID";
        }
    }

和我的 Pre_Render:

protected void ddl_PreRender(object sender, EventArgs e)
{
    DropDownList ddl = (DropDownList)sender;
    try
    {
        if (ddl.Items[0].Value != "-1")
            ddl.Items.Insert(0, new ListItem("--Select--", "-1"));
    }
    catch
    {
        ddl.Items.Insert(0, new ListItem("--Select--", "-1"));
    }
}

该列表有 pre_render 工作,什么没有,只是我的存储过程中没有数据。

4

2 回答 2

1

我想你只是忘记调用 DataBind 方法

ddlCaseFiles.DataBind();

if(!ispostback)这三行之后的块中

于 2012-09-20T14:46:11.273 回答
1

你还没有绑定你的下拉列表

if (Request.QueryString["ExpenseID"] != null)
{
    if (!IsPostBack)
    {
        ddlCaseFiles.DataSourceID = "dsCaseFiles";
        ddlCaseFiles.DataTextField = "Display";
        ddlCaseFiles.DataValueField = "FileID";
        ddlCaseFiles.DataBind();  //You need to Bind it here
    }
}

希望对你有帮助

于 2012-09-20T15:14:58.283 回答