still no
heres the call
<%if Session("idcustomer")<>0 then%>
<input type="hidden" name="username" value="<%response.write pConfirm %>">
<%else%>
<%
validate "confirm", "required"%><%textbox "confirm", pConfirm, 3, "textbox"%>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif">(Agree with the terms and conditions)</font><%
end if%>
</TD>
and heres the alert if not valid
case "confirm"
If Instr(1,Trim(request.form(fieldName)),"Yes", 1) = 0 then
dicError(fieldName) = dictLanguage.Item(Session("language")&"_validateform_11") & "<i>" & fieldName & "</i>"
end if
heres where it checks for having a character
sub textbox(byVal fieldName , byVal fieldValue, byVal fieldSize, byVal fieldType)
dim lastValue
lastValue = request.form(fieldName)
select case fieldType
case "textbox"
%>
<input name="<%=fieldName%>" size="<%=fieldSize%>" value="<%
if trim(fieldValue)<>"" then
response.write fieldValue
else
response.write Server.HTMLEncode(lastValue)
end if%>">