{"id":128088,"date":"2023-05-04T15:07:09","date_gmt":"2023-05-04T09:37:09","guid":{"rendered":"https:\/\/www.vskills.in\/certification\/tutorial\/?page_id=128088"},"modified":"2024-04-12T14:15:24","modified_gmt":"2024-04-12T08:45:24","slug":"capturing-the-survey-choice","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/","title":{"rendered":"Capturing the Survey Choice"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\"><strong>Capturing the Survey Choice<\/strong><\/h4>\n\n\n\n<p>To capture the survey choice selected by the user using the RadioButtonList control in ASP.NET, you can use the following steps:<\/p>\n\n\n\n<p>Place the RadioButtonList control on your ASP.NET page, and set its ID and ListItem values in the Properties window or directly in the HTML code.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<p>&lt;asp:RadioButtonList ID=&#8221;surveyChoices&#8221; runat=&#8221;server&#8221;&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &lt;asp:ListItem Text=&#8221;Choice 1&#8243; Value=&#8221;1&#8243;&gt;&lt;\/asp:ListItem&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &lt;asp:ListItem Text=&#8221;Choice 2&#8243; Value=&#8221;2&#8243;&gt;&lt;\/asp:ListItem&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &lt;asp:ListItem Text=&#8221;Choice 3&#8243; Value=&#8221;3&#8243;&gt;&lt;\/asp:ListItem&gt;<\/p>\n\n\n\n<p>&lt;\/asp:RadioButtonList&gt;<\/p>\n\n\n\n<p>In the code-behind file of the ASP.NET page, handle the Click event of a button or any other event that triggers the survey choice capture.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<p>protected void submitButton_Click(object sender, EventArgs e)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp;&nbsp; &nbsp;string choice = surveyChoices.SelectedValue;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ use the selected survey choice in your application logic<\/p>\n\n\n\n<p>} In this example, the SelectedValue property of the RadioButtonList control is used to capture the value of the selected survey choice, which can then be used in the application logic.<\/p>\n\n\n\n<p>So far, the survey form is just a interface with no logic. Follow these steps to capture the user\u2019s choice and show that choice in the browser:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In Design view, double-click an empty part of the page to create an event handler for the Page object\u2019s Load event.<\/li>\n<\/ul>\n\n\n\n<p>The IDE automatically inserts the following event handler code (formatted differently here) into the page:<\/p>\n\n\n\n<p>protected void Page_Load(object sender, EventArgs e)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the line above the End Sub keywords, insert the following code:<\/li>\n<\/ul>\n\n\n\n<p>lblResponse.Text = rbl.SelectedValue;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By default postback property of RadioButtonList is not true. You can do it two ways. First you can go through the control smart tag and second you can go to the control properties and set AutoPostBack to True.<\/li>\n<\/ul>\n\n\n\n<p>When you run the page and click the button, the click causes the page to submit its data (a postback). A Page Load event occurs just before ASP.NET completes construction of the page. The Load event handler code looks at the RadioButtonList (rbl) and extracts whatever is in its SelectedValue property. The code assigns the SelectedValue value as the Text property of the Label so the user can see the results.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Apply for ASP.NET Certification Now!!<\/h3>\n\n\n\n<p><a href=\"https:\/\/www.vskills.in\/certification\/certified-aspnet-programmer\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.vskills.in\/certification\/certified-aspnet-programmer<\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong><a href=\"https:\/\/www.vskills.in\/certification\/tutorial\/asp-net\/\" target=\"_blank\" rel=\"noreferrer noopener\">Back to Tutorial<\/a><\/strong><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>Capturing the Survey Choice To capture the survey choice selected by the user using the RadioButtonList control in ASP.NET, you can use the following steps: Place the RadioButtonList control on your ASP.NET page, and set its ID and ListItem values in the Properties window or directly in the HTML code. Example: &lt;asp:RadioButtonList ID=&#8221;surveyChoices&#8221; runat=&#8221;server&#8221;&gt; &nbsp;&nbsp;&nbsp;&#8230;<\/p>\n","protected":false},"author":22,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[3339],"tags":[],"class_list":["post-128088","page","type-page","status-publish","hentry","category-asp-net-2"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Capturing the Survey Choice - Tutorial<\/title>\n<meta name=\"description\" content=\"Capturing the Survey Choice\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Capturing the Survey Choice - Tutorial\" \/>\n<meta property=\"og:description\" content=\"Capturing the Survey Choice\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T08:45:24+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/\",\"name\":\"Capturing the Survey Choice - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"datePublished\":\"2023-05-04T09:37:09+00:00\",\"dateModified\":\"2024-04-12T08:45:24+00:00\",\"description\":\"Capturing the Survey Choice\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Capturing the Survey Choice\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Capturing the Survey Choice - Tutorial","description":"Capturing the Survey Choice","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/","og_locale":"en_US","og_type":"article","og_title":"Capturing the Survey Choice - Tutorial","og_description":"Capturing the Survey Choice","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T08:45:24+00:00","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/","name":"Capturing the Survey Choice - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"datePublished":"2023-05-04T09:37:09+00:00","dateModified":"2024-04-12T08:45:24+00:00","description":"Capturing the Survey Choice","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/capturing-the-survey-choice\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Capturing the Survey Choice"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/128088","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=128088"}],"version-history":[{"count":2,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/128088\/revisions"}],"predecessor-version":[{"id":128098,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/128088\/revisions\/128098"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=128088"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=128088"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=128088"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}