All Questions
Tagged with request.querystring url
8 questions
0
votes
1
answer
457
views
White spaces in the URL and request.query_string will return %20 in the output
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 = ...
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....
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 ...
1
vote
0
answers
110
views
Weird characters in ASP.Net (C#) URL link stops Request.QueryString processes [duplicate]
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 ...
115
votes
4
answers
103k
views
Are query string keys case sensitive?
Suppose I have a url like this:
http://www.example.com?key=123&KEY=198
Then what will be result of
request.querystring("key")
and
request.querystring("KEY")
I am a bit confused.
0
votes
2
answers
2k
views
is there a simple way to get URL in java
I am working on an email validation link for a website. When a user registers and finishes filling in their personal data (and it passes all the checks), they are sent to a jsp page saying that an ...
0
votes
2
answers
905
views
c# how to request url parameters and change char
After getting some url parameters, I would like to use them later in my c# code, but in a slightly different format.
"http://example/myexample.aspx?attendees=john.sam&speakers=fred.will.tony.amy....
2
votes
1
answer
1k
views
how can i pass a "&" into a querystring value
i have a link in my app with the following URL:
http://www.mysite.com/test?group=MyGroup
the issue is one of the groups is called Group A & B
when i try this and parse it on the serverside (...