Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Copy and Paste this .. works fine :)</p> <pre><code>&lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt; &lt;/asp:ScriptManager&gt; &lt;asp:RadioButtonList ID="RadioButtons1" runat="server" AutoPostBack="true"&gt; &lt;asp:ListItem Text="1" Selected="True"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="2"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="3"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="4"&gt;&lt;/asp:ListItem&gt; &lt;/asp:RadioButtonList&gt; &lt;br /&gt; &lt;asp:DropDownList ID="DropDown1" runat="server" AutoPostBack="true"&gt; &lt;asp:ListItem Text="1" Selected="True"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="2"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="3"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="4"&gt;&lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; &lt;br /&gt; &lt;br /&gt; &lt;asp:DropDownList ID="DropDown2" runat="server" AutoPostBack="true"&gt; &lt;asp:ListItem Text="1" Selected="True"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="2"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="3"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="4"&gt;&lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; &lt;br /&gt; &lt;br /&gt; &lt;asp:DropDownList ID="DropDown3" runat="server" AutoPostBack="true"&gt; &lt;asp:ListItem Text="1" Selected="True"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="2"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="3"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="4"&gt;&lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; &lt;br /&gt; &lt;br /&gt; &lt;asp:UpdatePanel ID="Updatepanel1" runat="server"&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="RadioButtons1" /&gt; &lt;asp:AsyncPostBackTrigger ControlID="DropDown1" /&gt; &lt;asp:AsyncPostBackTrigger ControlID="DropDown2" /&gt; &lt;asp:AsyncPostBackTrigger ControlID="DropDown3" /&gt; &lt;/Triggers&gt; &lt;ContentTemplate&gt; &lt;asp:Label ID="Label1" runat="server" Text="LabelToUpdate"&gt;&lt;%= "rad: " + RadioButtons1.SelectedItem.Text + "&lt;br /&gt;" + "drop1: " + DropDown1.SelectedItem.Text + "&lt;br /&gt;" + "drop2: " + DropDown2.SelectedItem.Text + "&lt;br /&gt;" + "drop3: " + DropDown3.SelectedItem.Text %&gt;&lt;/asp:Label&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload