Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
4 answers
3k views

How do i pass a command argument of a button in Data List to another page?

Actually i am trying to redirect command argument of a button present in a data list to another page. I am using Request.QueryString method to access the command argument on another page with the help ...
Kunal Bagam's user avatar
12 votes
3 answers
45k views

How to parse querystring parameter from URL in Fastify server?

I am a totally new to fastify but I have a fastify server running. I want to parse query string such as: http://fake.com/?user=123&name=ali I want to get "user" and "name" values from the URL ...
web developer guy's user avatar
1 vote
2 answers
4k views

Extract case-insensitive query parameter from URL

I am trying to extract the case-insensitive query parameter /staging/ec/23463/front-view-72768.jpg?angle=90&or=0x0&wd=400&ht=200 from the URL. When I try to convert the whole URL in ...
Naresh's user avatar
  • 5,477
1 vote
0 answers
192 views

Wrong bundle_option_qty into cart magento 2

I'm trying to put into cart the selections of my bundle (query string) but I'm getting back always a wrong number of items into cart. Below an example: I have a bundle with bundle option 8664. Inside ...
Gianni Di Manno's user avatar
2 votes
1 answer
1k views

How can I check to see if an http request has no query strings in ASP.Net Core web API

I am working on an ASP.Net Core web API using REST verbs with optional query string parameters. For example, the API call looks like this; http://localhost:5010/servicetypecode?stc=123 or http:/...
EiEiGuy's user avatar
  • 1,557
2 votes
0 answers
152 views

How to specify more then one value for one key in RouteValueDictionary [duplicate]

I need to redirect to a page with multiple values for the same querystring key. like: ?x=abc&x=yz This is a constraint, I can not change how this service accepts his parameters. How can this be ...
Stijn Van Antwerpen's user avatar
0 votes
3 answers
5k views

POST parameters in asp.net

I'm trying to get parameters received from a form, that were sent with method POST. I don't know how it's called in asp, M$ loves to change stuff's names to mess with us. They come in HTTP body, ...
Hikari's user avatar
  • 4,037
2 votes
1 answer
14k views

Using 'querystring.parse' built-in module's method in Node.JS to read/parse parameters

Scenario: Consider the following code: var querystring = require('querystring'); var ParamsWithValue = querystring.parse(req._url.query); Then I am able to read any query string's value. E.g: If ...
Amol M Kulkarni's user avatar
29 votes
3 answers
28k views

How to parse/read multiple parameters with restify framework for Node.JS

Scenario: We developer are trying to replace a web service (written in C#.Net) with Node.JS Restful API. Issue: Now we need to handle the incoming request as is (we don't have control over it). So ...
Amol M Kulkarni's user avatar
4 votes
1 answer
14k views

How to pass the value from one asp page to another asp page using queryString?

How to pass the value from one asp.net page to another asp.net web page using queryString.It means test1.aspx and test2.aspx are two web pages. In test1.aspx, i have the string value, string abc="...
V.V's user avatar
  • 883
0 votes
3 answers
975 views

How can I populate a query string variable to a text box which contains &,\ and $ in it

I have a variable like say A= drug & medicare $12/$15. I need to assign it to a text box, but only 'drug' is posted the server. The rest of the data gets truncated. this.textbox.text= request....
user352588's user avatar