Hi
I've created an dll based on tapi api configuration and pardon my question in advance, I created an ASP page with this vbscript code (tapi.clsconn is my dll):
<%@ LANGUAGE="VBSCRIPT" %>
<%
Option Explicit
dim p_pass1
p_pass1 = Request.form("p_name"
p_pass1 = " & p_pass1 & "
response.write(p_pass1)
set Session.contents("outpostDB"
= createObject("TAPI.CLSCONN"
Session.Contents("outpostDB"
.StartsSecc Request.form("p_name"
%>
<HTML>
<HEAD>
</HEAD>
<BODY>
<FORM ID= etc Action="ClosePhoneCall.asp">
<INPUT TYPE="SUBMIT" Value="Drop call">
</FORM>
</BODY>
</HTML>
ClosePhoneCall.asp - new page
<%@ LANGUAGE="VBSCRIPT" %>
<%
Option Explicit
Session.contents("outpostDB"
.KillSecc
set Session.contents("outpostDB"
= nothing
%>
All I want know it's to create a timer that close the call in 15 seconds but not redirecting ClosePhoneCall.asp, I want to close the call in the same dial.asp page. Any Ideas Thanks in advance.
I've created an dll based on tapi api configuration and pardon my question in advance, I created an ASP page with this vbscript code (tapi.clsconn is my dll):
<%@ LANGUAGE="VBSCRIPT" %>
<%
Option Explicit
dim p_pass1
p_pass1 = Request.form("p_name"
p_pass1 = " & p_pass1 & "
response.write(p_pass1)
set Session.contents("outpostDB"
Session.Contents("outpostDB"
%>
<HTML>
<HEAD>
</HEAD>
<BODY>
<FORM ID= etc Action="ClosePhoneCall.asp">
<INPUT TYPE="SUBMIT" Value="Drop call">
</FORM>
</BODY>
</HTML>
ClosePhoneCall.asp - new page
<%@ LANGUAGE="VBSCRIPT" %>
<%
Option Explicit
Session.contents("outpostDB"
set Session.contents("outpostDB"
%>
All I want know it's to create a timer that close the call in 15 seconds but not redirecting ClosePhoneCall.asp, I want to close the call in the same dial.asp page. Any Ideas Thanks in advance.