Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within JSP
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
OCP Oracle Certified Professional Java SE 21 Developer Study Guide: Exam 1Z0-830
this week in the
Programmer Certification
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
Liutauras Vilda
Jeanne Boyarsky
paul wheaton
Sheriffs:
Ron McLeod
Devaka Cooray
Henry Wong
Saloon Keepers:
Tim Holloway
Stephan van Hulst
Carey Brown
Tim Moores
Mikalai Zaikin
Bartenders:
Frits Walraven
Forum:
JSP
How to display html text based on a Scriplet condition
Rakesh Chaudhary
Ranch Hand
Posts: 120
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi Ranchers,
Here I am stuck with a scenario...I have to show html text on particular condition from a scriplet how do I do it....
Currently the
Jsp
says...like
Existing html
<html> <body> <body marginwidth="0" marginheight="0"> Dear <%=ph(userName)%> <br> <br> Here is your login information to access <%=app%>: <br> <br> Your login name: <%=ph(userName)%> <br> Your password: <%=ph(pswd)%><br> <br> To login and see your profile, please visit <%=link%> <br> You can update your password in the "My account" page. <br> </body> <html>
Now I have to make it..display...like...
<%scriplet condition if true%> <html> Hello America and Existing html above </html> <%scriplet else conditon%> <> <entire Existing html>
How do I go about it....Thanks in Advance...
Regards
venkat prathap
Greenhorn
Posts: 7
I like...
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
<% if (true) {%>
<html>
Hello America and Existing html above
</html>
<%
} else {%>
<entire Existing html>
<% } %>
I once met a man from Nantucket. He had a tiny ad
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
frecuent users with cookies
Problem in Login page
What is the problem with this code!!!
Advice on a putting dynamic message on jsp page depending on action taken by user
Displaying JSP in certain DIV tag
More...