
|
|

|
<%
'Clear radio button select status
interfacechk=""
indicationchk=""
bothchk=""
alldistchk=""
'Make previously selected radio buttons checked
SELECT CASE Request("R1")
CASE "interface"
interfacechk="checked"
CASE "indication"
indicationchk="checked"
CASE "both"
bothchk="checked"
CASE "alldist"
alldistchk="checked"
END SELECT
%>
<%
strMode = Request.Form("pagenum")
if strMode = "" Then
alldistchk="checked"
End IF
%>
|
|