Here is the URL I submit.
http://telus.wellsfargo.com:7777/doc...t/dev/2054.rdf
I do not get an error, but the expected result (insert into a table) does not happen). I have unit tested my stored procedure and that works fine. When I submit the above URL as I said nothing happens.
Here is the code for log.asp
Code:
<%@ Language=VBScript %>
<!--
include alert.asp
-->
<%
response.buffer = TRUE
response.expires = TRUE
On Error Resume Next
dim queryStr
queryStr = request.QueryString("action")&request.form
Set Comm = Server.CreateObject("ADODB.Command")
Comm.connectiontimeout = 60
comm.ActiveConnection = "dsn=telus_iasdb;uid=reports;pwd=reports;"
comm.commandtype=4
comm.commandtext = "log_hits"
set param = comm.createparameter("InPut",200,1,500,querystr)
' set param = comm.Parameters
' param.append comm.createparameter(querystr,200,1)
comm.parameters.append param
'Pass the input value
' comm("InPut") = querystr
comm.execute()
response.redirect(querystr)
%>
I believe my DSN is okay, but I do not have Excel etc. to verify. Any help on that would be appreciated also. I have turned on DSN tracing but I never see any data.
Sorry for my ignorance, appreciate the help.