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 2 13180
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
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 This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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...
|
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...
|
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....
|
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...
|
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...
|
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...
|
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...
|
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
...
|
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...
|
by: concettolabs |
last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
|
by: better678 |
last post by:
Question:
Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct?
Answer:
Java is an object-oriented...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the...
| |