Simple Fax Transmission from ASP(SendCharFax Method)

25 Nov 2016 This code sample is deprecated and in process of being removed. Check out our new code libraries and usage documentation on InterFAX @ Github.

How to send a Simple Fax Transmission from ASP using SendCharFax method.

Download the ASP project files, or go back to our developers page and learn more about our .net send fax methods used.


 0 Then

    Response.Write "Fax submitted. Transaction ID: " & SendFaxResult

Else

    Response.Write "Error sending fax. Return code: " & SendFaxResult

End If
%>


Note: If you are faxing from behind a proxy using MS SOAP v.3, you can use one of the two following options:

'Option 1 - Use automatic detection by:
     objSoap.ConnectorProperty("EnableAutoProxy") = True

'Option 2 - Specify a proxy server:
     objSoap.ConnectorProperty("ProxyServer") = "192.168.0.100"
'and optionally, if the proxy server is password-protected specify:
     objSoap.ConnectorProperty("ProxyUser") = "Proxy Username"
     objSoap.ConnectorProperty("ProxyPassword") = "Proxy Password"