Re: sneding Ajax call to jsp page

2009-02-10 Thread Keshav Prasad
You may want to google for some ajax+jsp tutorials, because this list is primarily for tomcat specific questions. On Wed, Feb 4, 2009 at 3:17 PM, Sneha Manohar wrote: > Hi all , > I am new to AJAX , I sending ajax request to jsp page , > var url = "http://localhost:8084/Anoigma/handler/loginHandl

sneding Ajax call to jsp page

2009-02-04 Thread Sneha Manohar
Hi all , I am new to AJAX , I sending ajax request to jsp page , var url = "http://localhost:8084/Anoigma/handler/loginHandler.jsp?userId="+userId+"&pwd="+pwd;  xmlhttp.onreadystatechange=state_Change;     xmlhttp.open("GET",url,true);     xmlhttp.send(null);    jsp page validates user Id & pwd .