在一个ASP.Net VB.Net代码隐藏文件中,你能告诉我当DetailsView显示空白项目时用户点击DetailsView的“新建”按钮时我可以用来捕获的事件如DropDownLists,TextBoxes等?
我需要使用此事件处理程序预先选择从变量获取的DropDownList中的值。
答案 0 :(得分:1)
尝试ItemCommand事件。这是如何使用它。我只知道C#,但我认为你掌握了它。
代码背后:
protected void DetailsView_ItemCommand(object sender, DetailsViewCommandEventArgs e)
{
if (e.CommandName == "New")
{
// Your code here
}
}
标记:
<asp:DetailsView ID="DetailsView" runat="server" OnItemCommand="DetailsView_ItemCommand" ...