Dear Sir,
I want to send an email too apart from other event , the moment some error appears on page.here what I am doing is redirection with querystring value,but in this case other events is obviously ignored as cursor goes to redirected page.Please advice how to tackle this problem My aim is before execution of these code -
alert('Connection Problem... Pls. Try after some time... ');
window.open('<%=session("login_url")%>?mesg=C','_s elf',null,false) ;
One email also should be sent.
2) Also please write steps for searching all my post,Previously i used to search with userbame criteria ,but now it is not working.
Regards
om prakash
Code:
<%
dim conn
set conn= server.createobject("ADODB.Connection")
conn.ConnectionString = Session("eproc_ConnectionString1")
on error resume next
conn.open
if err.number <> 0 then
Response.Redirect "https://10.12.4.137/[email protected]&[email protected]&IsSubmitted=y&vsubject=error message&vmessage="&err.description
%>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<form>
</form>
<script language="javascript">
alert('Connection Problem... Pls.Try after some time... ');
window.open('<%=session("login_url")%>?mesg=C','_self',null,false) ;
</script>
<%
else
.......
om prakash kumar