473,439 Members | 1,990 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,439 software developers and data experts.

'Out of memory at line XX' error in Internet Explorer

Problem description:

I have a TextBox on Web User Control that is loaded into a PlaceHolder on my
ASPX page. There are other Web User Controls on that page as well.

When the page loads I can input text into the TextBox without any problem.
However, after postback if I try to input text into the TextBox I get an
Internet Explorer pop-up message box stating:
'A Runtime Error has occurred.
Do you wish to debug?
Line: 35
Error: Out of memory'

This does not happen on Firefox, only IE.

More info:

TextBox markup:
<asp:TextBox id=txtMyTextBox CssClass="MyTextBox"
Runat="server"></asp:TextBox>

Script-debugger breaks to:
<script language="javascript" type="text/javascript">
//<![CDATA[
var qq1=null,qq2=new Array(),qq3=null;function
qq9(qzyb,qznv){this.qztk=qzyb;this.qznv=qznv;};fun ction qq5(qzyb){for(var
qzba=0;qzba<qq2.length;qzba++){if(qq2[qzba].qztk==qzyb){eval(qq2[qzba].qznv);return
true;};};return
false;};if(document.layers){document.captureEvents (Event.KEYPRESS);};function
qq6(qzim){if(qq7(qzim)&&qq3&&qq3!=qq6){qq3(qzim);} ;};function
qq7(qzim){if(!qq1||!qq1.KeyboardEnabled){return
true;};if(document.activeElement&&(document.active Element.nodeName=='INPUT'||document.activeElement. nodeName=='SELECT'||document.activeElement.nodeNam e=='TEXTAREA')){return
true;};var
qztk;if(document.all){qzim=window.event;qztk=qzim. keyCode;}else{qztk=qzim.which;};var
qzAbi=String.fromCharCode(qztk);if(qztk>111&&qztk< 123)qzAbi="F"+(qztk-111);else
if(qztk==13)qzAbi="Enter";var
qzlk="";if(qzim.shiftKey)qzlk+="Shift+";if(qzim.ct rlKey)qzlk+="Ctrl+";if(qzim.altKey)qzlk+="Alt+";qz lk+=qzAbi;if(!qq5(qzlk)){return
true;};if(document.all){qzim.cancelBubble=true;qzi m.returnValue=false;}else{qzim.preventDefault();qz im.stopPropagation();};return
false;};function
ComponentArt_Menu_RegisterKeyHandler(qzyb,qznv){qq 2[qq2.length]=new
qq9(qzyb,qznv);};function qq8(menuObj){qq1=menuObj;};function
ComponentArt_Menu_InitKeyboard(menu){qq8(menu);qq1 .KeyboardEnabled=true;qq1.qzad=menu.Items()[0];qq3=document.onkeydown;document.onkeydown=qq6;};v ar
ComponentArt_Menu_Keyboard_Loaded=true;

//]]>
</script>

I have tried reconstructing the Web User Control... to no avail.

Any ideas?

Thanks ~ Matt
Jul 21 '05 #1
2 13269
This error is specific to the control you are using from, "ComponentArts". Standard .NET web controls do not emit the scripting
that you have submitted. Contact the component vendor for more information.

--
Dave Sexton
dave@www..jwaonline..com
-----------------------------------------------------------------------
"Matt Morgan" <Ma********@discussions.microsoft.com> wrote in message news:22**********************************@microsof t.com...
Problem description:

I have a TextBox on Web User Control that is loaded into a PlaceHolder on my
ASPX page. There are other Web User Controls on that page as well.

When the page loads I can input text into the TextBox without any problem.
However, after postback if I try to input text into the TextBox I get an
Internet Explorer pop-up message box stating:
'A Runtime Error has occurred.
Do you wish to debug?
Line: 35
Error: Out of memory'

This does not happen on Firefox, only IE.

More info:

TextBox markup:
<asp:TextBox id=txtMyTextBox CssClass="MyTextBox"
Runat="server"></asp:TextBox>

Script-debugger breaks to:
<script language="javascript" type="text/javascript">
//<![CDATA[
var qq1=null,qq2=new Array(),qq3=null;function
qq9(qzyb,qznv){this.qztk=qzyb;this.qznv=qznv;};fun ction qq5(qzyb){for(var
qzba=0;qzba<qq2.length;qzba++){if(qq2[qzba].qztk==qzyb){eval(qq2[qzba].qznv);return
true;};};return
false;};if(document.layers){document.captureEvents (Event.KEYPRESS);};function
qq6(qzim){if(qq7(qzim)&&qq3&&qq3!=qq6){qq3(qzim);} ;};function
qq7(qzim){if(!qq1||!qq1.KeyboardEnabled){return
true;};if(document.activeElement&&(document.active Element.nodeName=='INPUT'||document.activeElement. nodeName=='SELECT'||document.activeElement.nodeNam e=='TEXTAREA')){return
true;};var
qztk;if(document.all){qzim=window.event;qztk=qzim. keyCode;}else{qztk=qzim.which;};var
qzAbi=String.fromCharCode(qztk);if(qztk>111&&qztk< 123)qzAbi="F"+(qztk-111);else
if(qztk==13)qzAbi="Enter";var
qzlk="";if(qzim.shiftKey)qzlk+="Shift+";if(qzim.ct rlKey)qzlk+="Ctrl+";if(qzim.altKey)qzlk+="Alt+";qz lk+=qzAbi;if(!qq5(qzlk)){return
true;};if(document.all){qzim.cancelBubble=true;qzi m.returnValue=false;}else{qzim.preventDefault();qz im.stopPropagation();};return
false;};function
ComponentArt_Menu_RegisterKeyHandler(qzyb,qznv){qq 2[qq2.length]=new
qq9(qzyb,qznv);};function qq8(menuObj){qq1=menuObj;};function
ComponentArt_Menu_InitKeyboard(menu){qq8(menu);qq1 .KeyboardEnabled=true;qq1.qzad=menu.Items()[0];qq3=document.onkeydown;document.onkeydown=qq6;};v ar
ComponentArt_Menu_Keyboard_Loaded=true;

//]]>
</script>

I have tried reconstructing the Web User Control... to no avail.

Any ideas?

Thanks ~ Matt

Jul 21 '05 #2
I updated to the latest version of the ComponentArt Menu control and
this fixed the problem.

Thanks! ~ Matt

"Dave" wrote:
This error is specific to the control you are using from, "ComponentArts". Standard .NET web controls do not emit the scripting
that you have submitted. Contact the component vendor for more information.

--
Dave Sexton
dave@www..jwaonline..com
-----------------------------------------------------------------------
"Matt Morgan" <Ma********@discussions.microsoft.com> wrote in message news:22**********************************@microsof t.com...
Problem description:

I have a TextBox on Web User Control that is loaded into a PlaceHolder on my
ASPX page. There are other Web User Controls on that page as well.

When the page loads I can input text into the TextBox without any problem.
However, after postback if I try to input text into the TextBox I get an
Internet Explorer pop-up message box stating:
'A Runtime Error has occurred.
Do you wish to debug?
Line: 35
Error: Out of memory'

This does not happen on Firefox, only IE.

More info:

TextBox markup:
<asp:TextBox id=txtMyTextBox CssClass="MyTextBox"
Runat="server"></asp:TextBox>

Script-debugger breaks to:
<script language="javascript" type="text/javascript">
//<![CDATA[
var qq1=null,qq2=new Array(),qq3=null;function
qq9(qzyb,qznv){this.qztk=qzyb;this.qznv=qznv;};fun ction qq5(qzyb){for(var
qzba=0;qzba<qq2.length;qzba++){if(qq2[qzba].qztk==qzyb){eval(qq2[qzba].qznv);return
true;};};return
false;};if(document.layers){document.captureEvents (Event.KEYPRESS);};function
qq6(qzim){if(qq7(qzim)&&qq3&&qq3!=qq6){qq3(qzim);} ;};function
qq7(qzim){if(!qq1||!qq1.KeyboardEnabled){return
true;};if(document.activeElement&&(document.active Element.nodeName=='INPUT'||document.activeElement. nodeName=='SELECT'||document.activeElement.nodeNam e=='TEXTAREA')){return
true;};var
qztk;if(document.all){qzim=window.event;qztk=qzim. keyCode;}else{qztk=qzim.which;};var
qzAbi=String.fromCharCode(qztk);if(qztk>111&&qztk< 123)qzAbi="F"+(qztk-111);else
if(qztk==13)qzAbi="Enter";var
qzlk="";if(qzim.shiftKey)qzlk+="Shift+";if(qzim.ct rlKey)qzlk+="Ctrl+";if(qzim.altKey)qzlk+="Alt+";qz lk+=qzAbi;if(!qq5(qzlk)){return
true;};if(document.all){qzim.cancelBubble=true;qzi m.returnValue=false;}else{qzim.preventDefault();qz im.stopPropagation();};return
false;};function
ComponentArt_Menu_RegisterKeyHandler(qzyb,qznv){qq 2[qq2.length]=new
qq9(qzyb,qznv);};function qq8(menuObj){qq1=menuObj;};function
ComponentArt_Menu_InitKeyboard(menu){qq8(menu);qq1 .KeyboardEnabled=true;qq1.qzad=menu.Items()[0];qq3=document.onkeydown;document.onkeydown=qq6;};v ar
ComponentArt_Menu_Keyboard_Loaded=true;

//]]>
</script>

I have tried reconstructing the Web User Control... to no avail.

Any ideas?

Thanks ~ Matt


Jul 21 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Harsha | last post by:
I have been working on VB, ASP for quite a long time. Very Recently ( From past 1 month) I am managing a VC++ project. I am trying to use the code which i downloaded from the internet to find the...
6
by: Ganesan selvaraj | last post by:
I using C# .net. i want to split the text files based of the some condition. my source text file size may be 4 kb to 4 gb. some time when i split the i got the "out of memory exception. when i...
2
by: CathieC | last post by:
I have a websote developed using visual studio 2005 beta , .net version 2 i deploy my application to a server and it is run from client computers. One of the users gets the error "Internet...
2
by: Matt Morgan | last post by:
Problem description: I have a TextBox on Web User Control that is loaded into a PlaceHolder on my ASPX page. There are other Web User Controls on that page as well. When the page loads I can...
2
by: Robert | last post by:
Hello javascript group readers, I have a question regarding how to prevent memory leaks in Internet Explorer when using closures. I already knew about the circular reference problem, and until...
2
by: m0nkeymafia | last post by:
I have spent the past few weeks trying to figure a way around this problem, and have yet to find a good enough solution. Internet Explorer leaks memory when I update a div container using...
1
by: Adam Clauss | last post by:
We have created an ActiveX control (a series of them actually) which can be loaded into Internet Explorer and accessed via Javascript using the techniques described here:...
1
by: durjoy | last post by:
dunno is the right forum to ask for help , but i cant see any category for html help . dont know any other site as well . this site is my last hope dear experts . i was hosting my site with...
2
by: parny003 | last post by:
Hi, I developed a windows service using VS 2008 C# .Net 2.0, and am using Internet explroer 6.0. I am making use of shdocvw.dll to get the address strings of opened internet explorer windows. It...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.