Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Undefined Error -2147352567

Status
Not open for further replies.

mbert

Technical User
Jan 19, 2001
6
US
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=&quot;60&quot;></td>
<td width=&quot;10&quot;></td>
<td width=&quot;1&quot;></td>
<td width=&quot;10&quot;></td>
<form method=&quot;GET&quot; action=&quot;claimant_action.asp&quot; target= _top>
<td width=&quot;100&quot; colspan=&quot;2&quot; valign=&quot;top&quot;>
<input type=&quot;hidden&quot; name=&quot;CN&quot; value=&quot;<% =strCN %>&quot; >
<input type=&quot;hidden&quot; name=&quot;CS&quot; value=&quot;<% =strCS %>&quot;>
<input type=&quot;submit&quot; value=&quot;Claimant(s)&quot; tabindex=&quot;3&quot;></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(&quot;Clmt_Sequence&quot;)
If rsClaimantCount(&quot;NumberOfClaims&quot;) > 1 then
Response.Redirect &quot;../Frames/frameset.asp?CP=../Claims/claimants.asp?CN=&quot; &amp; strCN
Else

'******************************************************************************
'* Redirect to PC or WC based upon Loss_Type
'******************************************************************************
If rsClaimantCount(&quot;LossType&quot;) = &quot;WC&quot; Then
Response.Redirect &quot;../Frames/frameset.asp?CP=../Claims/claimant_info_wc.asp?CN=&quot; &amp; strCN &amp; _
&quot;&amp;ADJ=&quot; &amp; rsClaimantCount(&quot;AdjusterNumber&quot;) &amp; &quot;&amp;CS=&quot; &amp; strCS &amp; &quot;&amp;STA=&quot; &amp; strSTA
Else
Response.Redirect &quot;../Frames/frameset.asp?CP=../Claims/claimant_info_pc.asp?CN=&quot; &amp; strCN &amp; _
&quot;&amp;ADJ=&quot; &amp; rsClaimantCount(&quot;AdjusterNumber&quot;) &amp; &quot;&amp;CS=&quot; &amp; strCS &amp; &quot;&amp;STA=&quot; &amp; strSTA
End if
End if
End If %



I'm at a loss... any guidance through this error would be appreciated! Thanks in advance!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top