HaHa

Greenhorn
+ Follow
since Jan 16, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by HaHa

I tried to use this counter, but it won't work. Can someone show me how to add a counter (without using cgi?) on a html page? Thanks very much,
Haha
22 years ago
JSP
The following three lines of codes may ensure that the page is not cached in all browsers:
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
Hope it helps,
Haha
22 years ago
JSP
Hi All,
I have a long listing of ordered data (sorted by the key which is charaters) and I would like to display them in a form (jsp file), but I would also like to supply the user of my page a search box (text field or something like that) so that the user can start type in this search box, I would like the have the list of the ordered data change accordingly, say, the first entry would be the match of the text in the search box or very next possible match if there is no exact match found.

I would like to do this on the client side, since the list of the data are passed to the client once at the beginning when the jsp is loaded.
Any help will be greatly appreciated, thanks very much,
Haha
Hi Pals,
I have a javascript file to do simple edit check on the form in a jsp page. Once the edit check passes, I want to disable the back button, the refresh button, the stop button and the forward button until the servlet has replied. How can I do that with javascript?
Thanks very much,
Haha