Vt Guru

Ranch Hand
+ Follow
since Dec 18, 2008
Merit badge: grant badges
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Vt Guru

I want to enable gzip encryption for static components like html, css, javascript and xml files in WEBLogic. Can anyone give me a suggestion to achieve this.
13 years ago
By Just with the below code how you can submit the form


Just add one submit button in the above form and check it
13 years ago
Session is different from request. I think in your case there is no need for session and array
14 years ago
JSP
In next page add the below piece of code.

Also you can do the same using c:out tag.

14 years ago
JSP
Hi All,
I want to use Resource Bundle file in my web pages in order to use resource Bundle. I don't know where do I place the property files in my web apps folder. anybody help me
14 years ago
JSP
I think you haven't do the taglib deceleration
Like below
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
14 years ago
JSP
Try using iText.jar for creating pdf document
14 years ago
JSP
Actually this methodology won't work.
Simple way is to do by just store the output data into a object and write it into pdf response object.

Viidhya Kishore wrote:Hello All,

My requirement is to capture the html that has been rendered in jsp and convert into PDF.
I wanted help as to how to access the rendered html from the jsp.

Also, in case there is an alternate way, I would be happy to know that too.

Thanks.

14 years ago
JSP
Also we can configure the static page in your web.xml like below
14 years ago
JSP
You are wrong...
request.getParameter() will work for the case enctype="multipart/form-data" and this is required while uploading file.
info: w3schools(dot)com/TAGS/tag_form.asp

K West wrote:The request.getParameter() method doesn't work with enctype="multipart/form-data"
It requires help of upload library to do this. You may refer to this link for more details.

14 years ago
JSP
The only way to do this by create new request to server..


Try posting form or using Ajax.......
14 years ago
JSP
<%@include> is static include
and <jsp:include> is dynamic include..
When you use <jsp:include> the file will be included at runtime but when you use <%@include> file will be included at compile time
14 years ago
JSP
You can do it via session or by doing request.setAttribute
14 years ago
JSP
Now my problem solved I just put the properties file into WEB-INF/class folder
14 years ago
JSP
Hi All,
I want to use ResourceBundle in my JSP page. I tried I don't know how to read local value from propertyfile.

Folder Structure
apps:
|_jsp pages
|_WEB-INF_res_propertyfiles(
RresourcesDynamic.properties,
RresourcesDynamic_fr.properties,
RresourcesDynamic_de.properties)



In my JSP page I call the resource by using below code


But while running this code I got error

14 years ago
JSP