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;








0















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>









share|improve this question






























    0















    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>









    share|improve this question


























      0












      0








      0








      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>









      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 24 at 6:18







      jame focus

















      asked Mar 24 at 6:04









      jame focusjame focus

      24




      24






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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>





          share|improve this answer

























          • 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











          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
          );



          );













          draft saved

          draft discarded


















          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









          0














          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>





          share|improve this answer

























          • 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















          0














          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>





          share|improve this answer

























          • 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













          0












          0








          0







          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>





          share|improve this answer















          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>






          share|improve this answer














          share|improve this answer



          share|improve this answer








          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

















          • 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



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript