Tagged Questions
The scriptlet tag has no wiki summary.
5
votes
2answers
8k views
How can i use JSTL variable in scriptlet?
I have to access the JSTL variable which is calculated inside the iterator.
Excerpt of code:
<c:forEach var="resultBean" items="${resultList}" varStatus="status">
card: ...
5
votes
2answers
6k views
iterating over Enum constants in JSP
I have an Enum like this
package com.example;
public enum CoverageEnum {
COUNTRY,
REGIONAL,
COUNTY
}
I would like to iterate over these constants in JSP without using scriptlet code. ...
4
votes
3answers
454 views
JSP tags + scriptlet. How to enable scriptlet?
I have a page which uses a tag template.
My web.xml is very basic.
I simply want to run some code in the page.
And no, I'm not interested in tags or other alternative. I want to use the bad-practice ...
4
votes
1answer
405 views
convert from scriptlet to JSF managed bean problem
I am trying to convert this scriptlet code to JSF class.
The view code
<f:view>
<h:form binding="#{jsfSocketClient.form}">
<h:outputText binding="#{jsfSocketClient.text}"/>
...
4
votes
7answers
5k views
How to avoid using scriptlets in my JSP page?
I've been told that the use of scriptlets (<%= ... %>) in my JSP pages isn't such a great idea.
Can someone with a bit more java/jsp experience please give me some pointers as to how to change ...
3
votes
3answers
267 views
Comparison of JSP Scriptlet versus MVC with regards to performance
I came from an interview and the CTO (Chief Technology Officer) told me that there have a system (which has been running for over 5 years) and they still prefer not to use MVC purely on performance. I ...
2
votes
1answer
98 views
textbox value to scriptlet
<form name="myForm" method="post" onsubmit="return getComment()">
<textarea id="commentarea"></textarea>
<input type="text" name="locate" ...
2
votes
2answers
55 views
Displaying Java Property in JSP
I have a class with a property called title and I have a getter/setter that gets and sets the property. If the property is P I need to print the word "Peer" on the page, and if it's T I need to print ...
2
votes
2answers
2k views
I can pass a variable from a JSP scriptlet to JSTL but not from JSTL to a JSP scriptlet without an error
The following code causes an error:
1. <c:set var="test" value="test1"/>
2. <%
3. String resp = "abc";
4. resp = resp + test;
5. pageContext.setAttribute("resp", resp);
6. %>
7. <c:out ...
1
vote
0answers
57 views
One jar for multiple jrxml
I'm working on jasperreports. I use scriptlets and I need to know if it's possible for multiple .jrxml to point on the same .jar. If no (and this is what I think), then is there any solution to not ...
1
vote
1answer
40 views
How do I hide scriptlet code from a regular web browser. eg. combine <!— and <%
Is there a way to hide scriptlet code from a regular web browser? I want to have my jsp so you could just drag and drop it onto a web browser and it would sort of work and not show the scriptlet code ...
1
vote
5answers
72 views
handling null values in text box in jsp
Say a text box takes value from Transfer Object as below in a jsp:
<INPUT TYPE="text" NAME="test" ID="test" value="<%=testTO.getTest()%>">
However, if getTest returns null, null will be ...
1
vote
1answer
42 views
Passing string to popup
I'm working with a JSP page and it's displaying a table of a storage objects that was fetched. I want to have a popup to another JSP page when the user clicks on the number that is showing the size of ...
1
vote
1answer
74 views
How to convert dynamic scriptlets to JSP 2.0 with JSTL/EL?
I need to grab a dynamically-named variable off of the request. This works in scriptlet form, but I'd rather not clutter up the page with scriptlets.
<%
String requestValueKey = "something_" + ...
1
vote
1answer
104 views
scriptlet gets executed wrongly
The following code:
<button type="button" id="button" onclick="<%cart.removeItem(0);%>">Click me</button>
is suppose to be executed when the button is clicked. However,
...
1
vote
7answers
3k views
How do I pass JavaScript values to Scriptlet in JSP?
Can anyone tell me how to pass JavaScript values to Scriptlet in JSP?
1
vote
1answer
345 views
jstl problem : 2 last scriptlet to remove from my jsp
I use a code that works fine but here's the last scriptlets in my jsp :
<% List listMillesime= MultiMillesimeFactory.getInstance().getListMillesimeActif();
...
1
vote
1answer
214 views
Are methods legal inside JSP scriptlet?
I know its not recommended, and I should be using tag libraries etc etc.
But I'd still like to know if it is legal to declare methods in a JSP scriplet:
<%
public String doSomething(String ...
1
vote
1answer
1k views
In JSP, how to identify the type of Object present in a List?
Is it possible in JSP to get the type of Object in List, just like we do in Java
myDataBind.getResultsList().get(0).getClass();
or is it possible to achieve something like this:
if ( ...
0
votes
1answer
29 views
error faced while working on jsp and mysql
while creating a login jsp page i m getting this error when the username and password is entered and clicked submitted...
org.apache.jasper.JasperException: /loginbean.jsp (line: 9, column: 57) ...
0
votes
2answers
39 views
Why does my JSP scriptlet fail to retrieve an int from the pageContext and cast it to a locally scoped primitive variable?
I couldn't figure out a way to do this in EL/JSTL so when I do this:
<%
int myIntPrimitiveValue = pageContext.getAttribute("myDataObject.myIntPrimitiveValue");
MyEnumObject myEnumInstance = ...
0
votes
2answers
72 views
Java Equivalent for code-behind in ASP.net?
I have a rather curious scenario, which I am sure that the immense talent browsing through the questions here at stackoverflow will have very little trouble helping me out.
I have a project in Java ...
0
votes
0answers
22 views
Print a new line in scriptlets
a part of my code is
<%while(rss.next()){
comment = comment + "..." + rss.getString("username") +" says " + rss.getString("comments");
}%>
then somewhere in my form im accessing ...
0
votes
0answers
111 views
Assign JavaScript value to a Scriptlet
Can anyone please tell me how to assign the contents of a java script variable to a scriptlet variable.
Here's my code:
function getComment(location){
<%
try{
...
0
votes
1answer
134 views
compiling a jrxml with sciptlet using ant
I'm trying to compile a jrxml using ant.
I've created my jrxml on iReports so I dont have a build.xml.
When runing ant command, it asks for a build.xml.
I created this file in the same repertory as my ...
0
votes
1answer
57 views
JSTL retrieving a hashmap from session
I have a hashmap which is stored in a session. The hashMap is a map of maps.
HashMapStoredInSession ={"290" = {text="abc", response="someText"}, "276"={text="xyz", response="random"}};
I dont ...
0
votes
4answers
124 views
How to convert java.util.date to required format in scriptlet
I have a transfer object being returned to the JSP after a search. It is having a java.util.Date field (e.g. private Date issueDate;)
I am accessing the data in TO using usebean tag and displaying ...
0
votes
1answer
84 views
Access Model attribute in scriptlet
I am using Spring MVC, and in my Controller, I am setting a standard model attribute using:
...
model.addAttribute("param", value);
...
Now, I wish to access this in a scriptlet (within a JSP). For ...
0
votes
1answer
54 views
Maven Scriptlets
when I am builting my project in NetBeans using Maven I get this warning message:
[WARNING] DEPRECATED [postinstallScript]: Use postinstallScriplet
[WARNING] DEPRECATED [preinstallScript]: Use ...
0
votes
3answers
74 views
JSTL equivalents to jsp tags
I have a search application.
The result of my search is all set as properties in transfer object.
In my processor java class, I am putting the TO in context as:
ctx.putUserData("searchDetailsTO", ...
0
votes
1answer
68 views
JSP and Adding Strings returned by JSP Expression Scriptlet
I am having script errors of "Error expected ')'" in IE when attempting to do the following:
alert(<%=SystemConfig.getTranslatedTextByKey(LBIBOConstants.LANG_KEY_MODIFYTIME_ALRTMISSINGA, ...
0
votes
2answers
45 views
How to use a java class in a taglib scriptlet?
I am trying to pass an exception string from a java class into a taglib. I take the exception from the request and pass that into a taglib that generates a div on a page with the error text. However ...
0
votes
1answer
44 views
One scriptlet instance for multiple reports
For multiple reports, I have a scriptlet that calls many web services. The calls are done under the afterReportInit() method to fill a couple of HashMaps which in turn are used in the reports. The ...
0
votes
2answers
125 views
jsp scriptlet function called from button click
I am looking for a quick and dirty way to allow a user to enter something in a text field, click a button, and have some results be displayed based on what is entered. How do I accomplish this with ...
0
votes
0answers
229 views
iReport Scriptlet NoClassDefFound Error
How can I access a Scriptlet which resides on the same path as my reports?
I am working on a Java Swing project, and my application is residing in the package com.myapp, whereas my reports are in ...
0
votes
1answer
109 views
How do I parse through a URL path, get the filename, then replace the file extension using JSTL and Java scriptlet
I need to get "filename" from a URL
Here I am declaring
<p:out var="path" value="${webObject.path}" scope="page"/>
<c:set var="string1" value="${path}" />
<p:out value="${string1}" ...
0
votes
2answers
190 views
Avoid Scriptlets in Jsp for displaying data on page load
I realize that when you submit the form in a jsp, in the mapped servlet you can get the desired data, set it in the proper scope(say request) and forward it to jsp like this:
...
0
votes
1answer
389 views
How to write Javascript from scriptlet to file?
I have a series of JSPs, each of which contains a scriptlet for generating code for visualisations using Google's Chart Tools. These are called dynamically at run time to display visualisations.
The ...
0
votes
1answer
92 views
JSTL SQL Basics
Does anyone have good reference which can help me understand JSTL SQL Basics
I have already gone through
http://www.tutorialspoint.com/jsp/jsp_database_access.htm
But needed something which explains ...
0
votes
1answer
351 views
Is there a problem using scriptlet tags for aspx page?
I have made an aspx page in which much of the content gets generated on the logic that I have written in scriptlet tags.
For eg
<%
foreach(var data in dataCollection)
{
int i=0;
%>
...
0
votes
0answers
41 views
query on scriptlets
my code goes as mentioned below.. .
<div class="productHead">
<h2>
<dsp:valueof param="associatedPhone.displayNameDefault"/>
</h2>
<h4>
...
0
votes
1answer
240 views
How to get a c# variable (string) value in the .aspx page
So with this code.
public partial class SiteMaster : System.Web.UI.MasterPage
{
public string feedbackPostback = "false";
protected void Page_Load(object sender, EventArgs e)
...
0
votes
1answer
365 views
How To: jsp scriptlet equivalent code in freemarker
I am working on one POC where I need to create a freemarker ftl equivalent to a JSP. The aim is to find out how easy is to create jsp equivalent ftl file. I came across some scriptlets in jsp file and ...
0
votes
1answer
641 views
using scriptlet tag inside struts tag
i am trying to disable a text field:
<html:text property="firstName" style="width: 100px;">
<%=isDisabled%>
</html:text>
String ...
0
votes
2answers
231 views
JSP - Loads of submit buttons and loads of IF statements
My JSP page has many Submit buttons for example
<input type="submit" name="RemoveCustomer" value="Submit"/>
<input type="submit" name="AddCustomer" value="Submit"/>
and within my ...
0
votes
2answers
525 views
Scriptlet in js
i have a jsp page... i am adding some content to page dynamically depending upon request parameters (an array will be returned by request) based on this i have to create a drop down. i want to do this ...
0
votes
2answers
273 views
Converting to JSTL (Specificlly on calling methods)
I'm in the process of going the full JSTL way, and I've got an issue with the following scriplet, I have already transformed the variable displaying and conditions to the expression language (EL) but ...
0
votes
0answers
240 views
Unterminated string constant
My Description contains an apstrophe('). How to escape it.
<a href='javascript:select("<%= pageBean.replace(list.getColumn(0), "'", "'") %>",
"<%= pageBean.replace(list.getColumn(1), "'", ...
0
votes
1answer
216 views
Why can I not transfer a scriptlet attribute to JSTL in this JSP custom tag?
The string:
${prettyDate}
is output to the page by this custom tag instead of the prettified Date string:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ tag ...
0
votes
4answers
162 views
JSP outside a web container
I am starting a project that will have many "files" (like a web servers .html or jsp files). Each of these files will have "JSP" embedded in the files, for example;
Hello <%="John Doe" %>
I ...