User Profile

Collapse

Profile Sidebar

Collapse
abquader
abquader
Last Activity: Feb 28 '11, 03:22 AM
Joined: Feb 9 '11
Location: Pune,Maharashtra,India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • abquader
    started a topic Why does parameterMap not get passed ?
    in Java

    Why does parameterMap not get passed ?

    I am taking parameter map of one page in another jsp page

    on this page i am putting that map in session and getting that map in servlet which is called in action of the second jsp

    But i m not getting the value of map in servlet
    it is not null either It is simply blank

    friends plz tell me wt can b the issue ?
    See more | Go to post

  • abquader
    replied to Why is ajax code not working in IE8?
    hay Frinny,
    thnx for ur suggestion bt it didn't work for me
    it is still showing the same error "Object expected"
    See more | Go to post

    Leave a comment:


  • abquader
    replied to Why is ajax code not working in IE8?
    hay sarang, thnx for ur reference but i couldnot understand from it.
    one thing i must say is that i m not using jquuery
    plz check whether thr is any other solution
    See more | Go to post

    Leave a comment:


  • abquader
    started a topic Why is ajax code not working in IE8?

    Why is ajax code not working in IE8?

    I hv written following a code in ajax

    Code:
    var xmlHttp;
    
    function typeChanged(str){
    	
    	if(window.XMLHttpRequest){
    		xmlHttp=new XMLHttpRequest();
    	}else{
    		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    	}
    	var allTypes="";
    	xmlHttp.onreadystatechange=function(){
    		if(xmlHttp.readyState==4 && xmlHttp.status==200 ){
    			document.getElementById('sNames').innerHTML=xmlHttp.responseText;
    ...
    See more | Go to post
    Last edited by Niheel; Feb 9 '11, 04:38 PM.
No activity results to display
Show More
Working...