Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
jsp x 5
Member Avatar for yatin.baraiya

Hy all Currently i have one JSP which useful to execute the select query.... when i use this jsp for execute the select query in another computer's database if table having less record [less than 200 raw] it will give me result.... but if table having more than record [rows>200] …

Member Avatar for Brillig
-1
119
Member Avatar for yatin.baraiya

Hy all i want to display data in table format... as like below result. column1 column2 column3 1 2 sdg 3 4 dfg 4 6 gfdsg 6 7 ffdsg the following snap of my code is take the column title dynamically [CODE] <c:forEach items="${emplistlist}" var="demos"> <TD><c:out value="${demos.columnam1}" /></TD> </c:forEach> [/CODE] …

Member Avatar for anand01
0
2K
Member Avatar for yatin.baraiya

Hello all in my jsp i am using the below tag for label purpose [CODE] <% Random r = new Random(); String token = Long.toString(Math.abs(r.nextLong()), 36); String bgColor = request.getParameter("COLOR"); String ch = token.substring(0,6); %> [/CODE] <s:label name="formName" value="Employee"/> i want to use this tag as below.. <s:label name="formName" value="<%=val>"/> …

0
70
Member Avatar for yatin.baraiya

Hello all, following is my jsp file names register.jsp [CODE] <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Registration Process Form</title> </head> <body> <s:form action="registeraction" method="post"> <s:label name="formName" value="Employee Registration Form........"/> <s:textfield name="username" …

0
92
Member Avatar for yatin.baraiya

Hy all, i use the following code for displaying the image. i am sending the image file from the my HTML page... the following code is working for the image having name without any space example like:-test1.jpeg, but the following code is not working when i send the image having …

Member Avatar for Sadun89
0
128