AJAX not working in IE for asp.net2 [Urgent]
-
In asp.net2, AJAX is not working for dropdownlist_selecteditemIndex event in IE. It is working fine in Mozilla firefox. -- modified at 6:35 Friday 20th April, 2007
What do you mean by 'AJAX is not working' ??? There is no AJAX built into ASP.NET 2005, by default. Are you using ATLAS, or have you written your own AJAX code ? If your own code, have you written it so it can work with both ( the code is different )
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
What do you mean by 'AJAX is not working' ??? There is no AJAX built into ASP.NET 2005, by default. Are you using ATLAS, or have you written your own AJAX code ? If your own code, have you written it so it can work with both ( the code is different )
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Here is code for dropdownlist..... You need to check 'ignore HTML tags' for this to be visible. OK, so you're using ATLAS. What is happening in IE ? Is your page making it's AJAX call ? Is anything being rendered ? I don't use ATLAS, so odds are, I can't offer much help. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Here is code for dropdownlist..... You need to check 'ignore HTML tags' for this to be visible. OK, so you're using ATLAS. What is happening in IE ? Is your page making it's AJAX call ? Is anything being rendered ? I don't use ATLAS, so odds are, I can't offer much help. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
when i selects item in country dropdownlist.Its giving me javascript error as follows: 'event' is null or not an object.
Can we see the code for the whole thing. Dropdown list, update panel and dropdown event code?
-
In asp.net2, AJAX is not working for dropdownlist_selecteditemIndex event in IE. It is working fine in Mozilla firefox. -- modified at 6:35 Friday 20th April, 2007
Just check whether ScriptManager is there on the page, before any AJAX controls.
"A good programmer is someone who looks both ways before crossing a one-way street." -- Doug Linder
coolestCoder
-
Just check whether ScriptManager is there on the page, before any AJAX controls.
"A good programmer is someone who looks both ways before crossing a one-way street." -- Doug Linder
coolestCoder
-
when i selects item in country dropdownlist.Its giving me javascript error as follows: 'event' is null or not an object.
SOunds like your code is out of whack somewhere - event in this case is the event object - it's used as a param to event handlers in FF, but not in IE (or the other way round - can never remember!). Check your handlers...
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox