Is there anyway to retrieve a HTML element's class or ID in the controller class? Say for example, I have the following View:
<fieldset id="FeatureSelectField">
<legend>Extra Features</legend>
<div id="DeluxeFeatureID">
<%= Html.CheckBox("DeluxeFeature:fa")%>
fa
<br />
<% = Html.CheckBox("DeluxeFeature:fb")%>
fb
<br />
<%= Html.CheckBox("DeluxeFeature:fc")%>
fc
<br />
<%= Html.CheckBox("DeluxeFeature:fd")%>
Stage Construction
<br />
<%= Html.CheckBox("DeluxeFeature:fe")%>
fd
<br />
</div>
</fieldset>
So I want to filter all the HTML elements in my view to get the elements that are under <div id="DeluxeFeatureID"></div>
.
Any idea how to do that on controller?