How i convert this href link to JSTL with paramHow to upload files to server using JSP/Servlet?How do servlets work? Instantiation, sessions, shared variables and multithreadingHow to avoid Java code in JSP files?How to use if-else option in JSTLJSTL request attribute in c:ifPass value of href from JSP to ServletTest the jsp pages which includes jstl code in servlet using Httpunit and Servlet unitJSP/JSTL is not workingRegarding request.getParameter and JSTLAjax Call to servlet and load new page
Is the Indo-European language family made up?
Why are C64 games inconsistent with which joystick port they use?
Should breaking down something like a door be adjudicated as an attempt to beat its AC and HP, or as an ability check against a set DC?
Where's this lookout in Nova Scotia?
Count rotary dial pulses in a phone number (including letters)
What kind of metaphor is "trees in the wind"?
Image processing: Removal of two spots in fundus images
Line of lights moving in a straight line , with a few following
Is CD audio quality good enough?
Employer asking for online access to bank account - Is this a scam?
Would Brexit have gone ahead by now if Gina Miller had not forced the Government to involve Parliament?
Why doesn't the Earth accelerate towards the Moon?
Which is the common name of Mind Flayers?
NIntegrate doesn't evaluate
How to use Palladio font in text body but Computer Modern for Equations?
What is the object moving across the ceiling in this stock footage?
What are the real benefits of using Salesforce DX?
When and what was the first 3D acceleration device ever released?
I unknowingly submitted plagarised work
Employer demanding to see degree after poor code review
Are these reasonable traits for someone with autism?
How strong are Wi-Fi signals?
Is the field of q-series 'dead'?
How to illustrate the Mean Value theorem?
How i convert this href link to JSTL with param
How to upload files to server using JSP/Servlet?How do servlets work? Instantiation, sessions, shared variables and multithreadingHow to avoid Java code in JSP files?How to use if-else option in JSTLJSTL request attribute in c:ifPass value of href from JSP to ServletTest the jsp pages which includes jstl code in servlet using Httpunit and Servlet unitJSP/JSTL is not workingRegarding request.getParameter and JSTLAjax Call to servlet and load new page
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have this problem when trying to change my code in JSP page to JSTL code. The link I got so far doesn't request to my desired JSP page. Please help me resolve this.
Source code:
<a href="showlist?action=detail&bookid=$book.bookid"/>Detail</a>
JSTL code:
<c:url value="showlist?action=detail" var="myid">
<c:param name="bookid" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
jsp servlets
add a comment |
I have this problem when trying to change my code in JSP page to JSTL code. The link I got so far doesn't request to my desired JSP page. Please help me resolve this.
Source code:
<a href="showlist?action=detail&bookid=$book.bookid"/>Detail</a>
JSTL code:
<c:url value="showlist?action=detail" var="myid">
<c:param name="bookid" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
jsp servlets
add a comment |
I have this problem when trying to change my code in JSP page to JSTL code. The link I got so far doesn't request to my desired JSP page. Please help me resolve this.
Source code:
<a href="showlist?action=detail&bookid=$book.bookid"/>Detail</a>
JSTL code:
<c:url value="showlist?action=detail" var="myid">
<c:param name="bookid" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
jsp servlets
I have this problem when trying to change my code in JSP page to JSTL code. The link I got so far doesn't request to my desired JSP page. Please help me resolve this.
Source code:
<a href="showlist?action=detail&bookid=$book.bookid"/>Detail</a>
JSTL code:
<c:url value="showlist?action=detail" var="myid">
<c:param name="bookid" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
jsp servlets
jsp servlets
edited Mar 24 at 6:18
jame focus
asked Mar 24 at 6:04
jame focusjame focus
24
24
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your parameter name should be id as before
<c:url value="/showlist" var="myid">
<c:param name="action" value="detail"/>
<c:param name="id" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
I have modified it since my link should be like "/showlist?action=detail&bookid=?". Is different if action must go before bookid ?
– jame focus
Mar 24 at 6:20
@jamefocus see my updated answer
– user7294900
Mar 24 at 10:21
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321157%2fhow-i-convert-this-href-link-to-jstl-with-param%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your parameter name should be id as before
<c:url value="/showlist" var="myid">
<c:param name="action" value="detail"/>
<c:param name="id" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
I have modified it since my link should be like "/showlist?action=detail&bookid=?". Is different if action must go before bookid ?
– jame focus
Mar 24 at 6:20
@jamefocus see my updated answer
– user7294900
Mar 24 at 10:21
add a comment |
Your parameter name should be id as before
<c:url value="/showlist" var="myid">
<c:param name="action" value="detail"/>
<c:param name="id" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
I have modified it since my link should be like "/showlist?action=detail&bookid=?". Is different if action must go before bookid ?
– jame focus
Mar 24 at 6:20
@jamefocus see my updated answer
– user7294900
Mar 24 at 10:21
add a comment |
Your parameter name should be id as before
<c:url value="/showlist" var="myid">
<c:param name="action" value="detail"/>
<c:param name="id" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
Your parameter name should be id as before
<c:url value="/showlist" var="myid">
<c:param name="action" value="detail"/>
<c:param name="id" value="$book.bookid"/>
</c:url>
<a href="$myid">Detail</a>
edited Mar 24 at 10:20
answered Mar 24 at 6:10
user7294900user7294900
25.7k123770
25.7k123770
I have modified it since my link should be like "/showlist?action=detail&bookid=?". Is different if action must go before bookid ?
– jame focus
Mar 24 at 6:20
@jamefocus see my updated answer
– user7294900
Mar 24 at 10:21
add a comment |
I have modified it since my link should be like "/showlist?action=detail&bookid=?". Is different if action must go before bookid ?
– jame focus
Mar 24 at 6:20
@jamefocus see my updated answer
– user7294900
Mar 24 at 10:21
I have modified it since my link should be like "/showlist?action=detail&bookid=?". Is different if action must go before bookid ?
– jame focus
Mar 24 at 6:20
I have modified it since my link should be like "/showlist?action=detail&bookid=?". Is different if action must go before bookid ?
– jame focus
Mar 24 at 6:20
@jamefocus see my updated answer
– user7294900
Mar 24 at 10:21
@jamefocus see my updated answer
– user7294900
Mar 24 at 10:21
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321157%2fhow-i-convert-this-href-link-to-jstl-with-param%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown