I am not able to find the right words to narrow this Google search, so here goes ...
Let's say inside an HTML Form there was the following question:
How Great is Stack Overflow?
<input type="radio" name="Q1" value="100.00">Excellent</input>
<input type="radio" name="Q1" value="75.00">Average</input>
<input type="radio" name="Q1" value="50.00">Poor</input>
If the User selected Excellent, Later in some type of Code Behind, I could do the following:
Request.Form["Q1"]
And it would give me the value 100.
Question 1: Can I get the actual text too? (Meaning, for this example, "Excellent")?
Question 2: How possible is it to get a list of all the text (Excellent, Average, Poor), the associated values (100, 75, 50), and which one was selected (Excellent - at a value of 100)?
Question 2a: And maybe even the actual question all that data is associated with (How Great Is Stack Overflow?)