字段未在页面加载时填充,但在操作事件时填充

本文关键字:填充 操作 事件 加载 字段 | 更新日期: 2023-09-27 18:22:27

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

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

但在页面加载时,除类别DropDown和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,但它不起作用。

不管怎样,如果我在页面load-its:45上打印出getPKofUserLoggedIn()的值,并且当我打印出userNameDropDown.SelectedItem.value当选择它并触发操作事件时,它也是45。

我做错了什么?

字段未在页面加载时填充,但在操作事件时填充

在Page_Load中,catagoryDropDownapplicationDropDown似乎是空的。您需要绑定它们,或者以某种方式将它们填充到某个Init()方法中,该方法将在Page_Load之前调用(或者在调用populateMostRecentStory之前简单地将它们填充在Page_Load上)