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
dim outpostDB
p_pass1 = Request.form("p_name"
p_pass1 = " & p_pass1 & "
response.write(p_pass1)
set outpostDB = createObject("TAPI.CLSCONN"
outpostDB.StartsSecc Request.form("p_name"
Sub Down
outpostDB.KillSecc
set outpostDB = nothing
End Sub
%>
This asp recieve a telephone number and my dll dial the number but I want to create a button in this asp to call the subroutine down and terminate the phone call. I really don't know how to call this routine, I've try the onclick event but it doesn't work. Please help me. Thank You
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
dim outpostDB
p_pass1 = Request.form("p_name"
p_pass1 = " & p_pass1 & "
response.write(p_pass1)
set outpostDB = createObject("TAPI.CLSCONN"
outpostDB.StartsSecc Request.form("p_name"
Sub Down
outpostDB.KillSecc
set outpostDB = nothing
End Sub
%>
This asp recieve a telephone number and my dll dial the number but I want to create a button in this asp to call the subroutine down and terminate the phone call. I really don't know how to call this routine, I've try the onclick event but it doesn't work. Please help me. Thank You