Linked Questions
17 questions linked to/from How to pass multiple parameters in a querystring
0 votes
2 answers
260 views
How To Request multiple QueryStrings out of one URL? [duplicate]
My URL is built like this: localhost:56698/Default.aspx?lehrlingID=114 The lehrlingID=114 that you see at the end of my url gets saved in a variable like this lehrlingID = Convert.ToInt32(Request....
0 votes
2 answers
84 views
Send multiple parameters in link? [duplicate]
I want to send multiple objects in link and be able to get them in my server side. Currently I am trying this: <a href="?page={{ page }}+?filter={{data.sort}}">{{ page }}</a> The result I ...
0 votes
1 answer
50 views
Can I carry more than one variable in an href? [duplicate]
I'm carrying one variable in "reserva" wich I later I use $_GET('reserva'), but I also need another one of the rows,how could I do it? <?php while($row = mysqli_fetch_array($...
368 votes
7 answers
496k views
Correct way to pass multiple values for same parameter name in GET request
I'm looking into what is the correct way to pass multiple values for the same parameter name in a GET request. I've seen URLs like this: http://server/action?id=a&id=b And I've seen URLs like ...
15 votes
8 answers
74k views
translate a PHP $string using google translator API
been google'ing for a while how is the best way to translate with google translator in PHP, found very different ways converting URLS, or using Js but i want to do it only with php (or with a very ...
4 votes
2 answers
81k views
How to pass multiple arguments while creating URL link (using Javascript)? [duplicate]
I would like to know how to pass multiple parameters on the same link. I would like to pass the parameter 4 also on the link window.open("http://www.av.com"+parm5,") how do i write it. Detail Expl. ...
0 votes
4 answers
19k views
passing more than one variable to another page in asp.net
I want to pass more than one variable to other web pages. I try this code string adi = TaskGridView.SelectedRow.Cells[3].Text; string soyadi = TaskGridView.SelectedRow.Cells[3].Text; Response....
6 votes
2 answers
4k views
Parse query string arrays using either multi-key or comma syntax
I have a .NET Core 6.0 Azure Function HTTP Trigger. I would it like to handle an array query string parameter in both of these common forms: ?param=foo¶m=escape%2Ctest ?param=foo,escape%...
1 vote
2 answers
9k views
How to pass multiple parameters using Querystring in asp.net?
protected void btnBack_Click(object sender, EventArgs e) { if (!string.IsNullOrWhiteSpace(Request.QueryString["id"])) { int id = Convert.ToInt32(Request.QueryString["id"]); if (...
3 votes
0 answers
7k views
Passing a query string to HttpRequestMessage
I want to pass a query string to the request, if I type it on the request itself works, however if I add it to the request.Content it fails, Here's my code public async Task<Product> ...
2 votes
2 answers
2k views
How to expand all properties in returned release definition
Our Azure DevOps architecture uses a single release pipeline to upgrade and kick off other pipelines. Before the kicked pipelines run a release, the "kicker" pipeline updates the release definition of ...
0 votes
1 answer
1k views
Getting parameter from .ashx
So I have this code where it gets data from parameter provided by a .ashx file but It always returns "" whenever executed although it has parameter in it. URL I'm working with looks like http://...
0 votes
2 answers
719 views
How to extract the value passed in through onclick function event?
I have this onclick="ShowSingleNew(299)" event for a link and it opens up a new popup, what I'd like to do is extract the 299 (which is an id of the given new item) and pass it in my php script so ...
1 vote
1 answer
428 views
Simple request using googleapis to freebase
I would like to query freebase, to get some basic information about a celebrity. For example, I would like to get the place of birth, and the gender of Madonna. I achieved to get Madonna's friends ...
0 votes
0 answers
462 views
Return dynamic entity in OData
I'm new in OData. I created simple OData project. I have controller. It returns products from DB. To increase performance I'm loading only properties (using System.Linq.Dynamic) when client request ...