Yes it dosen't work like what u r expecting. U need to check the value at each of the option tag and if value matches then u need to select that option and hence the value of the select will be set. It will be something like this :
<select size="1" name="txtStatus" >
<option value="Open" <%if strcomp(rs.Fields("Status"

,"Open",vbtextcompare)=0 then response.write("selected"

%>" >Open
<option value="Resolved" <%if strcomp(rs.Fields("Status"

,"Resolved",vbtextcompare)=0 then response.write("selected"

%>" >Resolved
<option value="Reassign" <%if strcomp(rs.Fields("Status"

,"Reassign",vbtextcompare)=0 then response.write("selected"

%>" >Reassign
</select>
Any better ideas?
srinu...