All Questions
Tagged with request.querystring query-string
29 questions
1
vote
1
answer
884
views
Web scraping dynamic website with scrapy and query string parameters
We aim at obtaining data from "vivino (dot) com".
Specifically, for each wine, we need both user ratings and reviews.
Unfortunately, we are coping with issues with query string parameters ...
0
votes
0
answers
96
views
Why does IIS care if "convert" is misspelled in a query string?
I am trying to understand the behavior of a classic ASP page, to gain insight into injection vectors by looking at the IIS log and the behavior on a browser.
From the browser, I noticed that sometimes ...
0
votes
1
answer
338
views
C# REST API query parser
I'm learning, how to code rest api in C# and I have some problems with query string parameters parsing.
API works this way:
1: I have 1 endpoint api/project which can have some parameters in query ...
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 ...
0
votes
0
answers
20
views
unable to get complete url after # using query string in asp.net c# [duplicate]
hi i am unable to get complete url using Query Sting in asp.net C#.
This is due to '#'.
My url look like ID=OOP-Concepts-in-C#:-Code-Examples-and-How-to-Create-a-6
Code :string Qstring=Request....
0
votes
0
answers
43
views
Server stores same Querystring value asp.net
I have used QueryString to take value from clicked menu, on redirect I filter values of page on basis of QueryString value.
But every time Request.QueryString returns the same value even if there are ...
0
votes
0
answers
559
views
Odd behaviour if querystring begins with an ampersand
I've isolated an odd behavior in ASP Classic, Windows server 2016, IIS 10.0
Run this code:
For Each Item in Request.QueryString
Response.Write Item & ": " & Request.QueryString(Item) &...
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 ...
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:/...
0
votes
0
answers
495
views
URL and query string in Grails UrlMappings
After searching for a while, I'm still not able to do the following using Grails. I want match a variable with some part of URL plus the query string.
I have the following rule in UrlMappings:
"/...
0
votes
1
answer
648
views
Query String converts space to ? (symbol) in asp.net
I have an aspx web forms application developed in C#. Now the web page are being called from other application with query string parameter.
Now the issue is, when the query string parameter value is "...
1
vote
2
answers
1k
views
Not able to read # from query string
In my application user can change the query string value, for one of the key we are supporting all the special characters.
when i read the query string using below code
Request.QueryString["key"]
...
0
votes
3
answers
319
views
# tag On Php QueryString Not Working
I am facing a problem with passing query string. In my query string the value containing a # tag when i use $_REQUEST['string'] its only return the value which is write before of # tag. There is any ...
0
votes
2
answers
949
views
Query string in email body in asp.net
I am having problems in creating a query string in an email body. Could you please help me?
The scenario is that a user receives my email and then I need to add in this email an "unsubscribe" link ...
11
votes
3
answers
46k
views
how to get query parameter in lua or nginx?
I am trying to implement this-
https://gist.github.com/MendelGusmao/2356310
Lua,nginx based URL shortener,The only change i want to implement is when some query string parameter comes with shortened ...