jsp怎么样在表单页面验证用户名是否存在
程序代码:
<form id="form1" name="login" method="post"> 用户名:<input name="user" type="text" id="user" size="15" /><br /><br /> 密 码:<input name="pass" type="password" id="Pass" size="15" /> <br /><br /> <input type="submit" name="submit" value="登录" /> <input type="reset" name="submit2" value="取消" /> </form>
如果输入错误的用户名,移走光标以后,到数据库里去查询,弹出窗口提示用户名不存在
请问,怎么实现?