page « Post « JSP-Servlet Q&A





1. Is it possible to use 'enctype' and 'method'=post in JSP page..?    stackoverflow.com

I want to take bulk datas from JSP.. So i have to use method="post".. At the same time i have to upload images using 'enctype'.. When i use both method="post" and ...

2. Is there any way to pass values from one page to another other than GET AND POST in JSP?    stackoverflow.com

For instance I have a page form.jsp contaiing a form and process.jsp that does all processing on the received data. When I submit data from page form.jsp,it goes to process.jsp which ...

3. How to store image, audio, video & text files POSTed to JSP page?    coderanch.com

Dear All, When IMAGE files are POSTed to JSP page, how can i store them in image format i.e. in binary format? My JSP page is accepting binary stream and writing it to a file. As the data is an image, i need to read the input in binary format and store it in binary(as-is) format. How can i do this ...

4. post back page    coderanch.com

5. Re-posting a JSP page    coderanch.com

hi all, I am fairly new to web development. I am trying to present 5 different screens which are very similar to each other, based on inputs from a drop down box. I have a default screen with a dropdown box of 5 values with a default value. Now if I select a different value from the dropdown, I should be ...

7. How to POST without leaving the page?    coderanch.com

9. How to pass data to another page on another domain via POST without specifying it ...    go4expert.com

I have a JSP page that has two pieces of data that I need to send to a page on another domain via post when a button is clicked. My original iteration was just having the two pieces of data in 2 hidden fields and when the user clicked a button it posted those two data and all was good in ...