Да ... но вам нужно немного jQuery для работы на стороне клиента.
<div id="NumericRevision">
<tr>
<th>Major Revision</th>
<td>@Html.TextBoxFor(m => m.document.documentStatus.documentRevision.MajorRevision)</td>
</tr>
<tr>
<th>Minor Revision</th>
<td>@Html.TextBoxFor(m => m.document.documentStatus.documentRevision.MinorRevision)</td>
</tr>
</div>
<div id="AlphanumRevision">
<tr>
<th>Alphanumeric Revision</th>
<td>@Html.TextBoxFor( m => m.document.documentStatus.documentRevision.Revision )</td>
</tr>
</div>
...
<script>
$(document).ready(function() {
//Initial state of the form
$("#AlphanumRevision").css("display","none");
// Add onclick handler to checkbox w/id "checkme"
$("#checkme").click(function(){
// If checked
if ($("#checkme").is(":checked")){
$("#AlphanumRevision").show("fast");
$("#NumericRevision").hide("fast");
}
else {
$("#AlphanumRevision").hide("fast");
$("#NumericRevision").show("fast");
}
});
});
</script>