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

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현