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.

I'm at a loss...any guidance on where to get a description of this would be appreciated! Thanks!
 
dos this happen when you try to open the page or run it in the browser through Interdev
 
Through a browser (not through InterDev), on the page, is a button which calls another page which redirects based on hidden parameters.

The site is for an insurance company. The page in question lists Claim information. It's the link to a specific claimant where the problem lies. Were you an agent of ours, you would be able to experience the error first hand...this part of the site is secured.


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 %>



Hope this is useful information to you. If not, let me know what else you'd like to see. Thanks!
 
ok i don't think the problem lies in the code but the server settings. could you specifically tell me the error description. Is it an http:\\ error page or something else.
 
The errors are routed to me through CDONTSMail: (The_Monroe_Web@uunet.uu.net)


This is a typical notice:

DATE: 1/10/01 11:40:26 AM
ERR NO: -2147352567
DESCRIPTION:
SCRIPT: /claims/claimant_info_pc.asp?CN=000000036981&amp;CS=0001&amp;ADJ=70


I appreciate your looking at this! I'll feed you whatever is needed to solve the problem. Thanks!
 
i think you should post this question on the asp forum. Maybe that could help.
But other than that you should also check your web server settings.
 
Will do! Thanks for taking a look at it!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top