%
if Request.Form.Count=0 then
%>
Janahitha Ads - Welcome
<%
else
sql = "select ClientPassword, ClientEmail from ClientMaster where ClientLoginId='" + replace(trim(Request.Form("loginid")), "'", "''") + "'"
set rs = server.CreateObject("adodb.recordset")
rs.Open sql, con, 3, 3
if rs.EOF then
msg = " Invalid Login Id
Go Back "
else
msg = " Your Password Is Sent To Your Mail Id i.e.,
" + rs("ClientEmail") + " "
end if
rs.Close
set rs = nothing
%>
Janahitha Ads - Welcome
<%
end if
%>