I'm looking to make my drop down list and radio button readonly so It can take in the input. I do not want it disabled.
Drop down list...
<select name="ctitle" readonly>
<option selected value=" "> </option>
<%do until rsPositions.eof
strContent = rsPositions("descrip")
StrValue = rtrim(rsPositions("descrip"))
intThisId = rsPositions("id")
if ucase(rtrim(strCtitle)) = ucase(strValue) then%>
<option selected value="<%=strValue%>"><%=StrContent%></option>
<%else
if not StrReadOnly then%>
<option value="<%=strValue%>"><%=StrContent%></option>
<%end if
end if
rsPositions.movenext
loop%>
</select>
Radio button...
<%if StrCurtype="H" then%>
<input type="radio" name="curtype" value="H" checked >
<% else%>
<input type="radio" name="curtype" value="H">
<% end if%>Hourly
<% if StrCurtype="S" then%>
<input type="radio" name="curtype" value="S" checked >
<% else%>
<input type="radio" name="curtype" value="S" >
<% end if%>
Salary(<%=StrPayCycleDes%>)