Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
57 views

When I use the GET API to send a complex JSON format, the backend cannot obtain the data correctly. This my query string data: { "page": 1, "page_size": 10, "...
Lan Lin's user avatar
  • 45
0 votes
0 answers
121 views

I have this property in a PageModel: [FromQuery(Name = "paypalPlanId")] public string? paypalPlanId { get; set; } It works when calling the page within the application - the property is set ...
nick_b's user avatar
  • 37
0 votes
0 answers
232 views

I'm trying to join all inputs at an AJAX call to a single string var. In the backend we have a public JsonResult() which is being called from the frontend with their arguments. With Request....
rd1218's user avatar
  • 461
0 votes
1 answer
2k views

I searched for ages, but it just wouldn't print the query, I've no idea what I should do. I'm also kind of new to Fastify. Also I'm sending the request to 127.0.0.1/?greeting=something. const opts = { ...
noah's user avatar
  • 3
2 votes
1 answer
2k views

I have an issue in ASP.Net when trying to interrogate the query string for values when the parameter name is the same, and the values of that parameter contains commas. For Instance, suppose I have a ...
Karl's user avatar
  • 966
1 vote
2 answers
4k views

I need to retrieve also query string params after registration, so I'm using Request $request in both functions, but how I can pass Request also in second function? thanks in advance! protected ...
cloude's user avatar
  • 346
1 vote
1 answer
143 views

request http://a.com/?q=\xC3\xA2\xB0\xED source $str1 = "\xC3\xA2\xB0\xED"; $str2 = '\xC3\xA2\xB0\xED'; $str3 = $_GET['q']; echo "string1 : " . mb_detect_encoding($str1) . "&...
eos's user avatar
  • 25
1 vote
1 answer
885 views

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 ...
Andrea Ni's user avatar
0 votes
0 answers
99 views

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 ...
user1693404's user avatar
1 vote
1 answer
2k views

I'm seeing a lot of traffic which I suspect is probing for a flaw or exploit with the request format of https://example.com/?testword I figured while I look into this more I could save resources and ...
Elijha's user avatar
  • 181
-1 votes
1 answer
233 views

expected request: { "name": "Raju", "email": "[email protected]" } Actual: { "name": "Raju", "email": "email@...
Leo Paul's user avatar
0 votes
1 answer
341 views

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 ...
battle44's user avatar
1 vote
1 answer
51 views

I have the below code (parts removed for ease of reading) <asp:Repeater ID="rptMenu" runat="server" OnItemDataBound="rptMenu_ItemDataBound"> <ItemTemplate> ...
Computer's user avatar
  • 2,247
0 votes
0 answers
201 views

I am unable to retrieve the query string parameter value from the URL. My project is running in sub-directory. Please find the following details about my code **Request & result ** http://...
Muhammad Owais's user avatar
0 votes
0 answers
509 views

I have an MVC Core application, and one of the forms on submit passes a too long query string: HTTP Error 404.15 - Not Found The request filtering module is configured to deny a request where the ...
David Shochet's user avatar
0 votes
0 answers
240 views

I maintain an asp.net 4.0 application, not MVC, based on some close source and I must implement some anti-xss in query parameters it uses. I can't access all the code and altering all the components ...
mike's user avatar
  • 496
1 vote
4 answers
3k views

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
0 votes
1 answer
177 views

I have a WordPress site (www.AgingSafely.com) and on it I have built a plugin to show the “Details” about various Adult Family Homes (AFHs). All of the details are retrieved out of database table via ...
David Snow's user avatar
12 votes
3 answers
46k views

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
1k views

I set an IIS rule to redirect http traffic to https traffic, so I used the http rewrite rule. My original url contains 1 querystring param. When the rewrite is applied my new https url contains a ...
cicaletto79's user avatar
0 votes
2 answers
3k views

I was trying to fetch the Name/Value of a querystring using For Each loop, as per @kloarubeek answer shown in → Request.Querystring(variablevalue) possible? as follows: For Each Item in Request....
Code Reaper's user avatar
2 votes
1 answer
2k views

I am creating a get api in nodejs.I am requesting the following url http://localhost:8080/api?id=20&condition1=true&arr=[{prop1:1}]&obj={a:1,b:2} And I am getting the request query ...
Komal Bansal's user avatar
1 vote
0 answers
871 views

Im trying to get the records with id's greater than 1000 let's say. and I'm using unirest in java. I've tried to use queryString but it did not work. HttpResponse<JsonNode> responsePatientTest =...
hoper's user avatar
  • 1,113
0 votes
0 answers
54 views

I have this rule in my .htaccess file: Options +FollowSymLinks RewriteEngine on RewriteRule ^pages/([a-zA-Z0-9_-]+)$ pages.php?alias=$1 [L] URL structure is like website/pages/about-us where about-...
Aamir Bashir's user avatar
0 votes
1 answer
458 views

I need to have access to the sentence after question mark like follow(I am using flask and python): http://localhost:8000/answer?the new book is added I use the following code: query_string = ...
Nushin 's user avatar
0 votes
1 answer
228 views

i have created two aspx pages for the demo, page1 - WebForm1.aspx <asp:TextBox ID="txtTest" runat="server" Width="100px"></asp:TextBox> <asp:Button ID="btnClick" runat="server" Text="...
yuc's user avatar
  • 13
0 votes
0 answers
867 views

Update - 31 Aug string test = "ö"; string unicode1 = HttpUtility.UrlEncode(test, Encoding.Unicode); string unicode2 = HttpUtility.UrlEncodeUnicode(test); Console.WriteLine("Result of unicode1: " + ...
yuc's user avatar
  • 13
4 votes
1 answer
9k views

I tried to get query string parameters from url by using aiohttp, but this code does not work : async def call_answer(request): print("request", request) params = request.rel_url.query ...
Ali Najafi's user avatar
0 votes
0 answers
20 views

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....
Sukhvindra Singh's user avatar
1 vote
2 answers
4k views

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
0 votes
0 answers
43 views

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 ...
Sanket Khadke's user avatar
0 votes
0 answers
570 views

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) &...
Niloct's user avatar
  • 10.1k
0 votes
1 answer
45 views

Am trying to get value from request.vars but end up getting a null value. My code: if request.vars.message: return request.vars.message R = request.vars.message return dict (R=R, form =form) My ...
lobjc's user avatar
  • 2,991
0 votes
0 answers
16 views

I have the following URL: http://testexample.htm#tab=matchup&schoolid=74c1621c-e0cf-4821-b5e1-3c8170c8125a In my code, I want to check to see if "tab" equals "matchup" in the URL if (Request....
cpcdev's user avatar
  • 1,224
1 vote
0 answers
198 views

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

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
5 votes
2 answers
19k views

I am working on an ASP.Net Core 1.1 web API. I have a ServiceTypeCode controller as shown below; [Produces("application/json")] [Route("api/[controller]")] public class ServiceTypeCodeController : ...
EiEiGuy's user avatar
  • 1,557
0 votes
1 answer
1k views

int ob=0; protected void Button1_Click(object sender, EventArgs e) { ob = Convert.ToInt32(Request.QueryString["value"].ToString()); if (RadioButton1.Checked == true) { ob = ob + ...
shelovestocode's user avatar
0 votes
0 answers
497 views

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: "/...
rigon's user avatar
  • 1,430
-2 votes
1 answer
129 views

I just wrote web services for wordpress like login, register, pass update, etc... Now I want to user can upload images from iOS device and send this via web services(query string). I am not sure how ...
Manish Negi's user avatar
0 votes
1 answer
648 views

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 "...
User5590's user avatar
  • 1,435
1 vote
1 answer
3k views

URL querystrings for complex REST queries are failing for an application behind the Azure Application Gateway. When run locally a long URL > 2048 characters is passed on fine indicating the issue is ...
Rupreck's user avatar
  • 49
0 votes
0 answers
1k views

My URL: http://abcde.com/result.aspx?q=(some%20name%20here%20):Done&p=1&pos=0&qType=2 Its working in postman and also in curl command. If i try this in nodejs code var http = require("...
Deepak's user avatar
  • 1,443
-2 votes
1 answer
79 views

{scenarios: "[{purchasePrice:11,downPayment:1,term:30,rate:1}]"} That's my object. I want to turn the value of scenarios into the array its trying to be from the string it is. Is there a quick tool ...
Aron Greenspan's user avatar
2 votes
2 answers
6k views

I'm using ASP.NET Core MVC with C#. I have a functionality on my Login controller to take a parameter called ReturnUrl. The Idea is, that if this is set when the user logs in then I can redirect them ...
Rob's user avatar
  • 7,327
1 vote
1 answer
5k views

Javacode here: function sendTextMessage(sender, text) { messageData = { text:text } request({ url: 'https://graph.facebook.com/v2.6/me/messages', qs: {access_token:token}, ...
Quỳnh MSO's user avatar
-3 votes
2 answers
4k views

I need to retrieve the value of a query string for a department using .net c# but as some of the department names include an '&' as soon as it is read it stops after the & www.example.co.uk/...
KlydeMonroe's user avatar
0 votes
2 answers
3k views

Is it possible to pass multiple values to a single Querystring parameter? Here is what I am thinking: index.aspx?loc=wi&mi&mn or index.aspx=?loc=wi&loc=mi&loc=mn Something like that....
Andrew's user avatar
  • 477
1 vote
0 answers
111 views

I created a page in my web application that allows the user to change the account's e-mail address. To do so there is a form to complete and then a verification link is sent to the current email, the ...
Mind Rapist's user avatar
0 votes
1 answer
367 views

I want to request GeoServer using AJAX. Since those request have long query strings I want to modify them comfortably using a js object like this: defaultParameters = { service: 'WFS', ...
nik's user avatar
  • 2,324