Hi
BACKGROUND :
---------------------------------------------------------------------------
I have a
jsp page and in it there is a blank form as follows
<form name="myForm"></form>
the rest of the page is out side the form ,We are using dojo there .
Now for the outside of myForm there is a button .
on click of the button I am providing the following code
The giveMeData() will give me a
string data and I am sending that data to a
servlet and user can download that data in a .csv format .
---------------------------------------------------------------------------
PROBLEM:
I can download the data correctly but
I want to be sure that the data I am sending to servlet is not a cache data ,That is each time I hit the button it will return the fresh data from the giveMeData() function . giveMeData() is collecting the data from a table
which is not editable(a dojo grid)of the jsp .Later the table becomes editable so on that time my code should run properly .