<asp:MultiView ID="MultiView1" runat="server">
<asp:View ID="View1" runat="server">
</asp:View>
<asp:View ID="View2" runat="server" >
<table class="style1" style="border: medium groove #808080">
......contents.....
</asp:view>
protected void ddlto_SelectedIndexChanged(object sender, EventArgs e)
{
}
protected void RadioButton1_CheckedChanged1(object sender, EventArgs e)
{
MultiView1.ActiveViewIndex = 0;
}
protected void RadioButton2_CheckedChanged(object sender, EventArgs e)
{
MultiView1.ActiveViewIndex = 2;
}
<asp:RadioButtonList ID="RadioButtonList2" runat="server" AutoPostBack="True"
RepeatDirection="Horizontal" Font-Names="Arial" Font-Size="Small"
onselectedindexchanged="MultiView1_ActiveViewChanged">
<asp:ListItem Selected="True">One Way</asp:ListItem>
<asp:ListItem>Round Trip</asp:ListItem>
<asp:ListItem>Multi City</asp:ListItem>
</asp:RadioButtonList>
片道、往復、マルチシティの 3 つのボタンのラジオリストがあり、ビュー 2 にコード コードを追加したマルチビューを取得しました。2 番目のラジオ ボタンをクリックしたときにそのコードを表示したいと考えています。往復、やり方。助けてください