Skip to main content

Posts

Showing posts with the label QueryString value

Get QueryString value in MVC View, JavaScript

Make a hidden field and put the vale in it as like below example, then get the value using jQuery selector. As an Example, MVC View Code looks like this, < input   type = 'hidden'   value = '@Request.QueryString["token"]'   id = 'hdnToken'   /> JavaScript code looks like this, $ ( function  () {      var   token =  $ ( "#hdnToken" ). val ();      console . log ( token ); }); Another Example, //You can use URLSearchParams which is simple . var   getURLSearchParams  =  function  ( parameterName ) {      var   result  =  null ,          tmp  = [];          location . search         . substr ( 1 )        ...