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="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 %>
Hope this is useful information to you. If not, let me know what else you'd like to see. Thanks!