<form id="form1" runat="server"> <p> แบบทดสอบ<br /> ข้อที่ 1 จงตอบ<br /> <asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True"> <asp:ListItem Value="1">ข้อที่1</asp:ListItem> <asp:ListItem Value="2">ข้อที่2</asp:ListItem> <asp:ListItem Value="3">ข้อที่3</asp:ListItem> <asp:ListItem Value="4">ข้อที่4</asp:ListItem> </asp:RadioButtonList> ข้อที่ 2 จงตอบ<asp:RadioButtonList ID="RadioButtonList2" runat="server" AutoPostBack="True"> <asp:ListItem Value="5">ข้อที่1 </asp:ListItem> <asp:ListItem Value="6">ข้อที่ 2</asp:ListItem> <asp:ListItem Value="7">ข้อที่3</asp:ListItem> <asp:ListItem Value="8">ข้อที่4</asp:ListItem> </asp:RadioButtonList> <br /> <br /> <asp:Button ID="submit" runat="server" onclick="Button1_Click" Text="Button" Width="56px" /> </p> <p> <asp:Label ID="ResultScore" runat="server" Text="Label"></asp:Label> </p> </form>
int correct = 0; if (RadioButtonList1.SelectedValue = 1) { correct++; } ResultScore.Text = "ทำได้ : " + correct + " ข้อ ";
protected void Button1_Click(object sender, EventArgs e) { int ans1 = Convert.ToInt32(this.RadioButtonList1.SelectedValue); int ans2 = Convert.ToInt32(this.RadioButtonList2.SelectedValue); this.ResultScore.Text = Convert.ToString(ans1 + ans2); }
protected void Button1_Click(object sender, EventArgs e) { int questionNumber = 2; const string MAIN_NAME_ID = "RadioButtonList"; int score = 0; for (int i = 1; i <= questionNumber; i++) { RadioButtonList oRadioButtonList = this.FindControl(MAIN_NAME_ID + i.ToString()) as RadioButtonList; score += Convert.ToInt32(oRadioButtonList.SelectedValue); } this.ResultScore.Text = score.ToString(); }
<asp:CheckBoxList ID="CheckBoxList1" runat="server" AutoPostBack="True"> <asp:ListItem Value="1">1</asp:ListItem> <asp:ListItem Value="1">2</asp:ListItem> <asp:ListItem Value="1">3</asp:ListItem> <asp:ListItem Value="1">4</asp:ListItem> </asp:CheckBoxList>
int a = int.Parse(CheckBoxList1.SelectedItem.Value); int b = int.Parse(RadioButtonList1.SelectedValue); int c = a + b; lbResult.Text = "ทำได้ : " + c + " ข้อ ";
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง