I'm receiving an undefined error (ERR NO: -2147352567) consistantly in a specific page. I've looked, without success, for a description of this error.
One exception to when the error occurs should be noted... In our Intranet mirror site (of our internet site), calling an exact duplicate page, the error does NOT occur. It only occurs in the internet site.
Here is a typical error message received via CDONTSMail:
DATE: 1/10/01 11:40:26 AM
ERR NO: -2147352567
DESCRIPTION:
SCRIPT: /claims/claimant_info_pc.asp?CN=000000036981&CS=0001&ADJ=70
The site is for an insurance company. The page in question lists Claim information including a link to specific claimant(s). It's in activating that link when the problem occurs. Were you an agent of our company, you would be able to experience the error first hand...this part of the site is secured.
Clicking the link to a claimant calls a page which redirects given certain parameters.
Here is a portion of the List page:
<% If Not rsClaim.Bof and Not rsClaim.Eof Then %>
<tr>
<td width="60"></td>
<td width="10"></td>
<td width="1"></td>
<td width="10"></td>
<form method="GET" action="claimant_action.asp" target= _top>
<td width="100" colspan="2" valign="top">
<input type="hidden" name="CN" value="<% =strCN %>" >
<input type="hidden" name="CS" value="<% =strCS %>">
<input type="submit" value="Claimant(s)" tabindex="3"></td>
</form>
</tr>
<% End If %>
Here is a portion of the Redirect Page:
<%
'******************************************************************************
'* If > 1 Claimants then goto claimants list else go to claimant detail screen
'******************************************************************************
If Not rsClaimantCount.Bof and Not rsClaimantCount.Eof Then
'strCS=rsClaimantCount("Clmt_Sequence"
If rsClaimantCount("NumberOfClaims" > 1 then
Response.Redirect "../Frames/frameset.asp?CP=../Claims/claimants.asp?CN=" & strCN
Else
'******************************************************************************
'* Redirect to PC or WC based upon Loss_Type
'******************************************************************************
If rsClaimantCount("LossType" = "WC" Then
Response.Redirect "../Frames/frameset.asp?CP=../Claims/claimant_info_wc.asp?CN=" & strCN & _
"&ADJ=" & rsClaimantCount("AdjusterNumber" & "&CS=" & strCS & "&STA=" & strSTA
Else
Response.Redirect "../Frames/frameset.asp?CP=../Claims/claimant_info_pc.asp?CN=" & strCN & _
"&ADJ=" & rsClaimantCount("AdjusterNumber" & "&CS=" & strCS & "&STA=" & strSTA
End if
End if
End If %
I'm at a loss... any guidance through this error would be appreciated! Thanks in advance!
One exception to when the error occurs should be noted... In our Intranet mirror site (of our internet site), calling an exact duplicate page, the error does NOT occur. It only occurs in the internet site.
Here is a typical error message received via CDONTSMail:
DATE: 1/10/01 11:40:26 AM
ERR NO: -2147352567
DESCRIPTION:
SCRIPT: /claims/claimant_info_pc.asp?CN=000000036981&CS=0001&ADJ=70
The site is for an insurance company. The page in question lists Claim information including a link to specific claimant(s). It's in activating that link when the problem occurs. Were you an agent of our company, you would be able to experience the error first hand...this part of the site is secured.
Clicking the link to a claimant calls a page which redirects given certain parameters.
Here is a portion of the List page:
<% If Not rsClaim.Bof and Not rsClaim.Eof Then %>
<tr>
<td width="60"></td>
<td width="10"></td>
<td width="1"></td>
<td width="10"></td>
<form method="GET" action="claimant_action.asp" target= _top>
<td width="100" colspan="2" valign="top">
<input type="hidden" name="CN" value="<% =strCN %>" >
<input type="hidden" name="CS" value="<% =strCS %>">
<input type="submit" value="Claimant(s)" tabindex="3"></td>
</form>
</tr>
<% End If %>
Here is a portion of the Redirect Page:
<%
'******************************************************************************
'* If > 1 Claimants then goto claimants list else go to claimant detail screen
'******************************************************************************
If Not rsClaimantCount.Bof and Not rsClaimantCount.Eof Then
'strCS=rsClaimantCount("Clmt_Sequence"
If rsClaimantCount("NumberOfClaims" > 1 then
Response.Redirect "../Frames/frameset.asp?CP=../Claims/claimants.asp?CN=" & strCN
Else
'******************************************************************************
'* Redirect to PC or WC based upon Loss_Type
'******************************************************************************
If rsClaimantCount("LossType" = "WC" Then
Response.Redirect "../Frames/frameset.asp?CP=../Claims/claimant_info_wc.asp?CN=" & strCN & _
"&ADJ=" & rsClaimantCount("AdjusterNumber" & "&CS=" & strCS & "&STA=" & strSTA
Else
Response.Redirect "../Frames/frameset.asp?CP=../Claims/claimant_info_pc.asp?CN=" & strCN & _
"&ADJ=" & rsClaimantCount("AdjusterNumber" & "&CS=" & strCS & "&STA=" & strSTA
End if
End if
End If %
I'm at a loss... any guidance through this error would be appreciated! Thanks in advance!