Hi,
I have the next script
<html>
<body>
<%
if(Request.Form("btnsubmit"
!="press"
{
var arr1=new Array();
arr1[0]="9821";
arr1[1]=1;
arr1[2]="98211";
arr1[3]=121;
Session("somekey"
=arr1;
}
else{
Response.Write("test:"
;
var arr2=Session("somekey"
;
arr2.splice(1,1);
Response.Write(arr2.toString());
}
%>
<form name="test" method="post" action="<%=Request.ServerVariables("SCRIPT_NAME"
%>">
<input type="submit" name="btnsubmit" value="press">
</form>
</body>
<html>
When ASP trys top execute the string
arr2.splice(1,1);
the script falls down and returns the error like this"(0x8000FFFF)Catastrophic failure"
I just cannot understand what is the problem
May be it's a Microsoft bug or what?
I have the next script
<html>
<body>
<%
if(Request.Form("btnsubmit"
var arr1=new Array();
arr1[0]="9821";
arr1[1]=1;
arr1[2]="98211";
arr1[3]=121;
Session("somekey"
}
else{
Response.Write("test:"
var arr2=Session("somekey"
arr2.splice(1,1);
Response.Write(arr2.toString());
}
%>
<form name="test" method="post" action="<%=Request.ServerVariables("SCRIPT_NAME"
<input type="submit" name="btnsubmit" value="press">
</form>
</body>
<html>
When ASP trys top execute the string
arr2.splice(1,1);
the script falls down and returns the error like this"(0x8000FFFF)Catastrophic failure"
I just cannot understand what is the problem
May be it's a Microsoft bug or what?