Hi
I have one link like "select parameters", when we click it's show popup window. it should be modal window.
ex: when we click select parameter link its call this function.
function paramValues()
{
var reportDate=document.abcSelect.txtDateFrom.value;
var url="../Scr/ParamValues.jsp?date="+reportDate+"&cstitle="+"<%=CS_title%>";
var paramValue=window.showModalDialog(url,'paramValue','menubar:no; scroll:no; DialogWidth:600px; DialogHeight:452px; status:no; DialogTop:100px; DialogLeft:160px;help:no;');
}
in Parameter.jsp,
----------------------
Iam getting values from session using session.getAttribute,and displays this value using system.out.println("value");
when we click that link at first time it displays the value on serverside,
but iam close this window, and again i have click the select parameter link it's not shown the value on serverside. WHY, First time its displayed and why is not displayed second... time. not displayed.
give me reply ASAP
Thanks in advance
devasiva.