查询部分:

<!--#include virtual="/config/config.asp"-->
<!--#include virtual="/config/top.asp"-->

<%
conn.open constr
sql="select * from UserDetail"
rs.open sql,conn,3,3
if not RS.EOF then
while not RS.EOF
%>
用户名:<%=rs("u_name")%>
密码:<%=rs("u_password")%>
邮箱:<%=rs("u_email")%> <br>
<%
RS.movenext
wend
RS.close
end if
set rs=nothing
%>

修改部分:

<!--#include virtual="/config/config.asp"-->
<!--#include virtual="/config/top.asp"-->

<%

conn.open constr
sql="update UserDetail set u_email='用户邮箱' where u_name='用户名' "
rs.open sql,conn,3,3
set rs=nothing
%>

输出部分:

message ="感谢您使用本服务! 新的密码u_passwordstring已经发送到您的信箱,请注意查收!"