Using Request.QueryString in ASP.NET Embedded Code Block












0















I am attempting to pass a parameter from one file to another via the URL after a button is clicked. These are written with Express.js (index.ejs to items.ejs).



As it stands currently I am setting the URL parameter in a defined Javascript function:



function loadItems(page, subcategory) {
window.history.pushState(null, null, "?subcat=" + subcategory) //param set
$('#mainContent').load(page);
}


where subcategory is the changing variable.



From there I am trying to read this parameter during an ASP.NET function written in embedded code blocks.



<% if(items[i].subcategory === Request.QueryString["subcat"].Value) { %> //get param
<% if (items[i].status === "Supported") { %>
<tr class="success">
<td><a href="/items/edit/<%= items[i]._id%>" data-toggle="modal" data-target="#editModal">Edit</a></td>
<td id="item name"><%= items[i].name%></td>
<td id="subcat name"><%= items[i].subcategory%></td>
<td id="item status"><%= items[i].status%></td>
<td id="item desc"><%= items[i].description%></td>
</tr>


However I am met with an error which states Request is not defined and a callback to the above if statement. It is my understanding that on the ASP.NET side of things, Request.QueryString is a part of System.Web.HttpContext.Current.



How would I go about including this into my code blocks so that I am able to pull the parameter from the URL? Or, if this is not the way to be looking at this problem, how should I go about it?










share|improve this question



























    0















    I am attempting to pass a parameter from one file to another via the URL after a button is clicked. These are written with Express.js (index.ejs to items.ejs).



    As it stands currently I am setting the URL parameter in a defined Javascript function:



    function loadItems(page, subcategory) {
    window.history.pushState(null, null, "?subcat=" + subcategory) //param set
    $('#mainContent').load(page);
    }


    where subcategory is the changing variable.



    From there I am trying to read this parameter during an ASP.NET function written in embedded code blocks.



    <% if(items[i].subcategory === Request.QueryString["subcat"].Value) { %> //get param
    <% if (items[i].status === "Supported") { %>
    <tr class="success">
    <td><a href="/items/edit/<%= items[i]._id%>" data-toggle="modal" data-target="#editModal">Edit</a></td>
    <td id="item name"><%= items[i].name%></td>
    <td id="subcat name"><%= items[i].subcategory%></td>
    <td id="item status"><%= items[i].status%></td>
    <td id="item desc"><%= items[i].description%></td>
    </tr>


    However I am met with an error which states Request is not defined and a callback to the above if statement. It is my understanding that on the ASP.NET side of things, Request.QueryString is a part of System.Web.HttpContext.Current.



    How would I go about including this into my code blocks so that I am able to pull the parameter from the URL? Or, if this is not the way to be looking at this problem, how should I go about it?










    share|improve this question

























      0












      0








      0








      I am attempting to pass a parameter from one file to another via the URL after a button is clicked. These are written with Express.js (index.ejs to items.ejs).



      As it stands currently I am setting the URL parameter in a defined Javascript function:



      function loadItems(page, subcategory) {
      window.history.pushState(null, null, "?subcat=" + subcategory) //param set
      $('#mainContent').load(page);
      }


      where subcategory is the changing variable.



      From there I am trying to read this parameter during an ASP.NET function written in embedded code blocks.



      <% if(items[i].subcategory === Request.QueryString["subcat"].Value) { %> //get param
      <% if (items[i].status === "Supported") { %>
      <tr class="success">
      <td><a href="/items/edit/<%= items[i]._id%>" data-toggle="modal" data-target="#editModal">Edit</a></td>
      <td id="item name"><%= items[i].name%></td>
      <td id="subcat name"><%= items[i].subcategory%></td>
      <td id="item status"><%= items[i].status%></td>
      <td id="item desc"><%= items[i].description%></td>
      </tr>


      However I am met with an error which states Request is not defined and a callback to the above if statement. It is my understanding that on the ASP.NET side of things, Request.QueryString is a part of System.Web.HttpContext.Current.



      How would I go about including this into my code blocks so that I am able to pull the parameter from the URL? Or, if this is not the way to be looking at this problem, how should I go about it?










      share|improve this question














      I am attempting to pass a parameter from one file to another via the URL after a button is clicked. These are written with Express.js (index.ejs to items.ejs).



      As it stands currently I am setting the URL parameter in a defined Javascript function:



      function loadItems(page, subcategory) {
      window.history.pushState(null, null, "?subcat=" + subcategory) //param set
      $('#mainContent').load(page);
      }


      where subcategory is the changing variable.



      From there I am trying to read this parameter during an ASP.NET function written in embedded code blocks.



      <% if(items[i].subcategory === Request.QueryString["subcat"].Value) { %> //get param
      <% if (items[i].status === "Supported") { %>
      <tr class="success">
      <td><a href="/items/edit/<%= items[i]._id%>" data-toggle="modal" data-target="#editModal">Edit</a></td>
      <td id="item name"><%= items[i].name%></td>
      <td id="subcat name"><%= items[i].subcategory%></td>
      <td id="item status"><%= items[i].status%></td>
      <td id="item desc"><%= items[i].description%></td>
      </tr>


      However I am met with an error which states Request is not defined and a callback to the above if statement. It is my understanding that on the ASP.NET side of things, Request.QueryString is a part of System.Web.HttpContext.Current.



      How would I go about including this into my code blocks so that I am able to pull the parameter from the URL? Or, if this is not the way to be looking at this problem, how should I go about it?







      asp.net web-applications parameters






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 15 '18 at 16:58









      RyanRyan

      347




      347
























          1 Answer
          1






          active

          oldest

          votes


















          0














          My advice would be to use code behind. Embedded code blocks are an old-school throwback from the asp days. But if you must, then you should be able to do something like this:



          <%@ Page Language="VB" %>
          <script run=server>
          Protected Function GetSubcat() As String
          Return Request.QueryString["subcat"].Value
          End Function
          </script>

          <form id="form1" runat="server">
          Subcat value is <% =GetSubcat()%>.
          </form>





          share|improve this answer
























          • Would I be able to implement this if all of the pages that I am using are .ejs files, or is that going to be problematic?

            – Ryan
            Nov 15 '18 at 18:35











          • The code won't work unless they are ASP.NET .aspx pages. How would an .ejs file know anything about .NET?

            – Rick S
            Nov 15 '18 at 18:38











          • That's what I thought, sorry I'm very new to web app development so I'll probably ask some (really) dumb questions. Is there a way to call the .aspx pages? The entire app is written in .ejs/.js so far.

            – Ryan
            Nov 15 '18 at 19:18











          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%2f53324454%2fusing-request-querystring-in-asp-net-embedded-code-block%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














          My advice would be to use code behind. Embedded code blocks are an old-school throwback from the asp days. But if you must, then you should be able to do something like this:



          <%@ Page Language="VB" %>
          <script run=server>
          Protected Function GetSubcat() As String
          Return Request.QueryString["subcat"].Value
          End Function
          </script>

          <form id="form1" runat="server">
          Subcat value is <% =GetSubcat()%>.
          </form>





          share|improve this answer
























          • Would I be able to implement this if all of the pages that I am using are .ejs files, or is that going to be problematic?

            – Ryan
            Nov 15 '18 at 18:35











          • The code won't work unless they are ASP.NET .aspx pages. How would an .ejs file know anything about .NET?

            – Rick S
            Nov 15 '18 at 18:38











          • That's what I thought, sorry I'm very new to web app development so I'll probably ask some (really) dumb questions. Is there a way to call the .aspx pages? The entire app is written in .ejs/.js so far.

            – Ryan
            Nov 15 '18 at 19:18
















          0














          My advice would be to use code behind. Embedded code blocks are an old-school throwback from the asp days. But if you must, then you should be able to do something like this:



          <%@ Page Language="VB" %>
          <script run=server>
          Protected Function GetSubcat() As String
          Return Request.QueryString["subcat"].Value
          End Function
          </script>

          <form id="form1" runat="server">
          Subcat value is <% =GetSubcat()%>.
          </form>





          share|improve this answer
























          • Would I be able to implement this if all of the pages that I am using are .ejs files, or is that going to be problematic?

            – Ryan
            Nov 15 '18 at 18:35











          • The code won't work unless they are ASP.NET .aspx pages. How would an .ejs file know anything about .NET?

            – Rick S
            Nov 15 '18 at 18:38











          • That's what I thought, sorry I'm very new to web app development so I'll probably ask some (really) dumb questions. Is there a way to call the .aspx pages? The entire app is written in .ejs/.js so far.

            – Ryan
            Nov 15 '18 at 19:18














          0












          0








          0







          My advice would be to use code behind. Embedded code blocks are an old-school throwback from the asp days. But if you must, then you should be able to do something like this:



          <%@ Page Language="VB" %>
          <script run=server>
          Protected Function GetSubcat() As String
          Return Request.QueryString["subcat"].Value
          End Function
          </script>

          <form id="form1" runat="server">
          Subcat value is <% =GetSubcat()%>.
          </form>





          share|improve this answer













          My advice would be to use code behind. Embedded code blocks are an old-school throwback from the asp days. But if you must, then you should be able to do something like this:



          <%@ Page Language="VB" %>
          <script run=server>
          Protected Function GetSubcat() As String
          Return Request.QueryString["subcat"].Value
          End Function
          </script>

          <form id="form1" runat="server">
          Subcat value is <% =GetSubcat()%>.
          </form>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 15 '18 at 17:15









          Rick SRick S

          5,14341838




          5,14341838













          • Would I be able to implement this if all of the pages that I am using are .ejs files, or is that going to be problematic?

            – Ryan
            Nov 15 '18 at 18:35











          • The code won't work unless they are ASP.NET .aspx pages. How would an .ejs file know anything about .NET?

            – Rick S
            Nov 15 '18 at 18:38











          • That's what I thought, sorry I'm very new to web app development so I'll probably ask some (really) dumb questions. Is there a way to call the .aspx pages? The entire app is written in .ejs/.js so far.

            – Ryan
            Nov 15 '18 at 19:18



















          • Would I be able to implement this if all of the pages that I am using are .ejs files, or is that going to be problematic?

            – Ryan
            Nov 15 '18 at 18:35











          • The code won't work unless they are ASP.NET .aspx pages. How would an .ejs file know anything about .NET?

            – Rick S
            Nov 15 '18 at 18:38











          • That's what I thought, sorry I'm very new to web app development so I'll probably ask some (really) dumb questions. Is there a way to call the .aspx pages? The entire app is written in .ejs/.js so far.

            – Ryan
            Nov 15 '18 at 19:18

















          Would I be able to implement this if all of the pages that I am using are .ejs files, or is that going to be problematic?

          – Ryan
          Nov 15 '18 at 18:35





          Would I be able to implement this if all of the pages that I am using are .ejs files, or is that going to be problematic?

          – Ryan
          Nov 15 '18 at 18:35













          The code won't work unless they are ASP.NET .aspx pages. How would an .ejs file know anything about .NET?

          – Rick S
          Nov 15 '18 at 18:38





          The code won't work unless they are ASP.NET .aspx pages. How would an .ejs file know anything about .NET?

          – Rick S
          Nov 15 '18 at 18:38













          That's what I thought, sorry I'm very new to web app development so I'll probably ask some (really) dumb questions. Is there a way to call the .aspx pages? The entire app is written in .ejs/.js so far.

          – Ryan
          Nov 15 '18 at 19:18





          That's what I thought, sorry I'm very new to web app development so I'll probably ask some (really) dumb questions. Is there a way to call the .aspx pages? The entire app is written in .ejs/.js so far.

          – Ryan
          Nov 15 '18 at 19:18




















          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%2f53324454%2fusing-request-querystring-in-asp-net-embedded-code-block%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

          Xamarin.iOS Cant Deploy on Iphone

          Glorious Revolution

          Dulmage-Mendelsohn matrix decomposition in Python