Hi!
I have a combo box on a form. I want to check to see if the user is logging in as a guest. If they are then I want to have the word guest show up in the combo box selected.
This is what I have -
<select name="ComboUserName"><option></option>
<%IF lvUserType = "GU" THEN%>
<option>Guest</option>
***How Do I Select It Here?***
<%END IF%>
THANKS!
I have a combo box on a form. I want to check to see if the user is logging in as a guest. If they are then I want to have the word guest show up in the combo box selected.
This is what I have -
<select name="ComboUserName"><option></option>
<%IF lvUserType = "GU" THEN%>
<option>Guest</option>
***How Do I Select It Here?***
<%END IF%>
THANKS!