Still i am not able to implement the Input Radio control Required Validation. The situation is like that i have one question and there are several options for that question.
Example:
<!-- question -->
<p><strong>Are you interested in an alarm system for a business or residential location?</strong><br />
This field is required.</p>
<div>
<input name="802000" value="Residential" {IIF,"'[BusRes,S]'='Residential'","CHECKED",""} id="802000" type="radio" />
<label for="1">Residential</label>
<br />
<input name="802000" value="Business" {IIF,"'[BusRes,S]'='Business'","CHECKED",""} id="802000" type="radio" />
<label for="2">Business</label>
</div>
<span
id="ques1"
controltovalidate="802000"
errormessage="Select Location."
display="Dynamic"
evaluationfunction="RequiredFieldValidatorEvaluateIsValid"
initialvalue=""
group="step1"
style="color:Red;display:none;">*</span>
<br/>
<a onclick="if (typeof(Page_SmartValidate) == 'function') return Page_SmartValidate('step1');" language="javascript"
href=" ows.Fetch([*moduleid],0,'Next=2');"><img border="0" src="/images/next-icon.jpg" alt="Next" /></a>
This code is passed, even if I do not select any radio button option. I want to force user to Select ATLEAST 1 radio option. How can I do so?