「connexion.aspx」からコントローラー「asp:droopDownItem」をロードするのが困難で、要素「asp:droopDownItem」が「masterPage.cs」にあります。「asp:droopDownItem」を十分に埋めることができますが、問題は、ホームページに到着すると、「asp:droopDownItem」が空であることです.... :-(なぜですか? Micrososft から提供されたコードを使用して、成功せずにリモートでマスターページの要素..これが私のコードです
ContentPlaceHolder menuActive;
DropDownList cbbx_dbUser;
menuActive = (ContentPlaceHolder)Master.FindControl("menuActive");
if (menuActive != null)
{
cbbx_dbUser = (DropDownList)menuActive.FindControl("cmbx_dbListUser");
if (cbbx_dbUser != null)
{
for (int a = 0; a < resultArmsUser.GetLength(0); a++)
{
cbbx_dbUser.Items.Add(new ListItem(resultArmsUser[a, 5], resultArmsUser[a, 5]));
}
cbbx_dbUser.DataBind();
}
}