Praveen K P

Greenhorn
+ Follow
since Aug 11, 2005
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 Praveen K P

Hi everybody,
I am developing an application where in I want to play a mp3 file. Currently I am providing a link to the .mp3 file, and also added an entry
<mime-mapping>
<extension>mp3</extension>
<mime-type>audio/mpeg3</mime-type>
</mime-mapping>
in the web.xml. But when I click on the .mp3 file's link, the "download" window pops up. What I require is, the mp3 file automatically opens up in the media player.
Could anyone guide me through this problem.

thanks & regards
Praveen KP
18 years ago
JSP
Hi Everybody,
I am facing with a problem where I need to pass information from my parent page to a popup window. The scenario is like this:
In my parent page I have a lot of check boxes. When I click on a button, i need to submit the values of the checkboxes that are selected, to an action class, but the parent page should not get submited.

Is there any way I could handle this.

bye
Praveen
18 years ago
JSP
Hi everybody,
I am having a jsp that contains hidden fields of same name and different values.

<input type="hidden" name="testhidden" value="testhidden0">
<input type="hidden" name="testhidden" value="testhidden1">
<input type="hidden" name="testhidden" value="testhidden2">
<input type="hidden" name="testhidden" value="testhidden3">
<input type="hidden" name="testhidden" value="testhidden4">

Now how do I access these entire fields in my action class? Is there some way to do this?
Iam not making use of struts.

bye
18 years ago