0

我有一个填充输入字段的方法:

 private void populateMostRecentStory(string selectedUser)
    {
        recentPK = getRecentStoryPK(selectedUser);
        if (Int32.Parse(recentPK) != -1)
        {
            string[] returnedValues = retrieveLastStory(recentPK);
            if (returnedValues[0] != null)
            {
                int i = 0;
                int x = 0;
                foreach (var item in catagoryDropDown.Items)
                {
                    if (item.ToString().Equals(returnedValues[0].ToString()))
                    {
                        catagoryDropDown.SelectedIndex = i;
                        break;
                    }
                    i++;
                }
                foreach (var item in applicationDropDown.Items)
                {
                    if (item.ToString().Equals(returnedValues[2].ToString()))
                    {
                        applicationDropDown.SelectedIndex = x;
                        break;
                    }
                    x++;
                }
                dateInput.SelectedDate = DateTime.Parse(returnedValues[1]);
                incidentInput.Text = returnedValues[3];
                hoursInput.Text = returnedValues[5];
                descriptionInput.Text = returnedValues[6];
            }
        }
        else
        {
            clearStoryData();
        }
        dataBindFields();
    }

    private void dataBindFields()
    {
        catagoryDropDown.DataBind();
        dateInput.DataBind();
        applicationDropDown.DataBind();
        incidentInput.DataBind();
        hoursInput.DataBind();
        descriptionInput.DataBind();
    }

当更改下拉菜单的操作事件发生时,它的效果很好:

//user drop down
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{

    populateMostRecentStory(userNameDropDown.SelectedItem.Value);
}

但是在页面加载时,除了 catagoryDropDown 和 applicationDropDown 之外的所有字段都正确填充:

protected void Page_Load(object sender, EventArgs e)
{
    populateMostRecentStory(getPKofUserLoggedIn());
    //Assign SQL parameter to user drop down list so that the list shows the logged in user first   followed by other users in alphabetical order
    SqlDataSource1.SelectParameters["userLoggedIn"].DefaultValue = User.Identity.Name;
}

我不得不使用不同的方法来获取主键,因为 userNameDropDown.SelectedItem.Value 在页面加载时会导致 NullExceptionError。我事先尝试过 DataBind 它,但它不起作用。

无论如何,如果我在页面加载它时打印出 getPKofUserLoggedIn() 的值:45,当我在选择它并且触发动作事件时打印出 userNameDropDown.SelectedItem.Value 的值时,它也是 45。

我究竟做错了什么?

4

1 回答 1

2

在我看来,catagoryDropDownPage_LoadapplicationDropDown是空的。您需要绑定它们,或者以某种方式将它们填充到将在之前调用的某个Init()方法中Page_Load(或者在调用之前简单地填充它们)Page_LoadpopulateMostRecentStory

于 2013-07-16T13:28:50.883 回答