Hello everybody!
I don't have experience with ASP and need your help.
When user clicks on submit button ASP code has to call a function from a .dll.
Here is a code:
dim objfirst
sTelephone = Request.Form("PhoneNo"
sClient_Name = Request.Form("Name"
sTopic = Request.Form("TypeofQuery"
sExpires = Request.Form("Expire"
sHours = Request.Form("Hours"
'Create an instance of the Component '
Set objfirst = Server.CreateObject("IQWCBR.WCBR"
'Call the function in component, and store the result'
objfirst.SendRequest(sIPAdd,sTelephone,sClient_Name,sTopic,sExpires,sHours)
%>
The error I get is"
"Cannot use parentheses when calling a Sub"
Please guide me here
I don't have experience with ASP and need your help.
When user clicks on submit button ASP code has to call a function from a .dll.
Here is a code:
dim objfirst
sTelephone = Request.Form("PhoneNo"
sClient_Name = Request.Form("Name"
sTopic = Request.Form("TypeofQuery"
sExpires = Request.Form("Expire"
sHours = Request.Form("Hours"
'Create an instance of the Component '
Set objfirst = Server.CreateObject("IQWCBR.WCBR"
'Call the function in component, and store the result'
objfirst.SendRequest(sIPAdd,sTelephone,sClient_Name,sTopic,sExpires,sHours)
%>
The error I get is"
"Cannot use parentheses when calling a Sub"
Please guide me here