Linked Questions

0 votes
2 answers
260 views

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....
Alessandro Minneci's user avatar
0 votes
2 answers
84 views

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 ...
Juozas Rastenis's user avatar
0 votes
1 answer
50 views

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($...
Bernardo Alves's user avatar
368 votes
7 answers
496k views

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 ...
stripybadger's user avatar
  • 5,109
15 votes
8 answers
74k views

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 ...
Toni Michel Caubet's user avatar
4 votes
2 answers
81k views

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. ...
user3101523's user avatar
0 votes
4 answers
19k views

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....
calypso's user avatar
  • 19
6 votes
2 answers
4k views

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&param=escape%2Ctest ?param=foo,escape%...
Zach's user avatar
  • 325
1 vote
2 answers
9k views

protected void btnBack_Click(object sender, EventArgs e) { if (!string.IsNullOrWhiteSpace(Request.QueryString["id"])) { int id = Convert.ToInt32(Request.QueryString["id"]); if (...
Harpreet Singh's user avatar
3 votes
0 answers
7k views

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> ...
Garry A's user avatar
  • 485
2 votes
2 answers
2k views

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 ...
fepiv's user avatar
  • 1,340
0 votes
1 answer
1k views

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://...
MEGAtive's user avatar
0 votes
2 answers
719 views

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 ...
Xeen's user avatar
  • 7,023
1 vote
1 answer
428 views

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 ...
Scipion's user avatar
  • 12k
0 votes
0 answers
462 views

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 ...
Dilshod K's user avatar
  • 3,160

15 30 50 per page