'远程提交登陆数据判断
if request("remoteusername")<>"" and request("remotepassword")<>"" then
if InStr(request("remoteusername"),"@")=0 then
%>
document.getElementById("usernameshow").value="<%=request("remoteusername")&"@"&from%>";
<%else%>
document.getElementById("usernameshow").value="<%=request("remoteusername")%>";
<%end if%>
document.getElementById("pwshow").value="<%=request("remotepassword")%>";
gook();
<%end if
以及
function remendinput(userinput) {
if (userinput!="admin" && userinput.length>0){
if (userinput.indexOf("@")< 0){
document.getElementById("usernameshow").value=userinput + "@<%=from%>";
}
}
}