我在代碼隱藏頁附上事件與radiobuttonlist
訪問控制,RadioButtonList的是
listview
。當我裏面運行程序會生成一個錯誤: 「對象全球化志願服務青年未設置爲即時物體」的如何在.aspx頁面
的.aspx代碼:
<asp:ListView ID="ListView1" runat="server" >
<ItemTemplate>
<tr><td>
<asp:RadioButtonList ID="radiobuttonlist4" runat="server" AutoPostBack="true"
RepeatDirection="Horizontal"
OnSelectedIndexChanged="selected" Width="240px">
<asp:ListItem Value="agree"></asp:ListItem>
<asp:ListItem Value="disagree"></asp:ListItem>
<asp:ListItem Value="strongagree"></asp:ListItem>
<asp:ListItem Value="strongdisagree"></asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
</ItemTemplate>
</asp:ListView>
.aspx.cs代碼
assessdal s = new assessdal();
ListView1.DataSource = s.showop1();
ListView1.DataBind();
RadioButtonList list= ListView1.FindControl("radiobuttonlist4") as RadioButtonList;
list.SelectedIndexChanged += new EventHandler(handle);
public void handle(object sender, EventArgs e)
{
Label2.Text = "y";
}
請格式化您的代碼,哪個listview的模板是RadioButtonList? –
soory,在.aspx代碼中有radiobuttonlist控件,在複製代碼時,它被錯過了。 – user1405508
@ user1405508:爲什麼不正確地編輯你的問題?所以其他人可以幫助! –