URL Parameters are parameters whose values are set dynamically in a page’s URL, and can be accessed by its template and its data sources. This makes pages incredibly dynamic, enabling a single page to power an endless number of views.
0
votes
1answer
144 views
Ectract JSON-response into parameter — Performance testing
I need to extract this specific JSON-field into a parameter for my performance test in Visual Studio:
"ExamAnswerId": "757a3735-e626-412b-934c-e577c6963d51"
the problem occurs when I try to do this ...
0
votes
0answers
150 views
htaccess - Rewrite URL to remove original filename and replace with GET value
I'm currently using the following htaccess to remove .php extension from all files:-
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php ...
0
votes
2answers
168 views
Stop PHP from decoding my url parameter
I'm sending comma separated values through a URL (key, value). I'm encoding them with Javascript's escape() and then replacing the commas within each value with %2c . The problem is at the PHP end ...
2
votes
2answers
203 views
Ruby's Faraday - include the same param multiple times
I'm working against an API that forces me to send the same parameter's name multiple times to cascade different filtering criteria. So a sample api GET call looks like this:
GET ...
1
vote
4answers
127 views
jQuery parameters not passed to PHP
I am not sure why but jQuery is not passing parameters to PHP in order to complete the load() function with specific data based on the parameters ID.
In short term, when a user clicks a link there ...
3
votes
2answers
330 views
WSO2 Synapse: setting a URL parameter
I am trying to do something that seems straightforward but can't get it to work. Basically I want the WSO2 API manager to add a URL parameter to a REST call.
Setup and Problem
I have a WSO2 API ...
1
vote
0answers
110 views
Back button of Google Chrome after clicking a hyperlink whose target is on the same PDF document
PDF documents have hyperlinks to the contents on the same document (analogous to "#section" hrefs for an HTML document). Where's the back button to go back to the page I was on (where I clicked the ...
-1
votes
4answers
72 views
URL parameters on search.php
I've search functionality on my page, and it's called like http://mysite.com/somesite.php?search.
However, I've been wondering how to add parameters to it, so it would be ...
0
votes
1answer
100 views
Reading url parameters in ruby/sinatra drops special characters?
I have a url like the following:
http://test.com:1111?langq=198&langname=C++
When I read the params in ruby, params[:langname] gives me C and not C++.
Is there a simple way to stop ruby from ...
1
vote
2answers
356 views
Passing parameters in url without query string in struts2
I Like to use URLs like host/ActionName/123/abc/, instead of passing query string like host/ActionName?parm1=123&parm2=abc.
How can I do that in Struts2?
I done as below. but it is not working ...
0
votes
1answer
98 views
mod_rewrite querystring not working locally
I need to use mod_rewrite for translate:
http://example.com/sitengoFrontEnd3/lista/tipo-todo/?terminos=abcd
Into:
http://example.com/sitengoFrontEnd3/lista/tipo-todo/abcd
I am using codeigniter ...
1
vote
0answers
203 views
Is it possible to link (via #) to a destination within a PDF using URL parameters with Google Chrome?
The # operator is often used to refer to an anchor in HTML code. For example like this:
<a href="http://www.example.com/mypage.html#myanchor">
Open mypage.html and auto scroll down to ...
1
vote
1answer
191 views
SSRS Passing parameter of MDX in URL
I'm trying to pass one parameter: [Company].[Project Manager].&[10000]&[Dave] in SSRS URL action, in which &[1000] is office number and &[Dave] is PM name.
I got problem when passing ...
0
votes
0answers
33 views
Complex redirect (htaccess experts)
We have some "QR" posters and flyers printed, that link to:
http://www.domain.com/onefantasticproduct.html#qr1
http://www.domain.com/awesomeproduct.html#qr1
....
This seems impossible to track in ...
1
vote
1answer
76 views
ActionLink for a Custom MapRoute with two URL Parameters
I have a custom MapRoute
context.MapRoute("participantByGender",
"Admin/Participants/{id}/{gender}",
new {
controller = "Admin",
action = "Participants",
id = UrlParameter.Optional,
...
3
votes
2answers
223 views
PHP - Get URL Parameters and Rearrange In Array
The URL coming to the page looks something like this:
"http://localhost/testSite/id/1/friend_id/32/msg_id/5/category_id/40"
I would like to strip these variables (id/1, friend_id/32, msg_id/5 etc.) ...
0
votes
1answer
146 views
Requesting Report with URL Parameters
My issue is exactly the same as Mr. John Ortega's described here.
However, both of the proposed solutions have not worked for me.
If I replace "Report.aspx" with "ReportViewer.aspx" in the Report ...
1
vote
2answers
207 views
Submit webform via URL only?
I'm not really sure this belongs here, so instead of downvoting just lemme know if so and I'll quickly move it on.
Anyway, there is a website that has a search page, that when hitting the search ...
1
vote
3answers
142 views
Send parameters to another page
I have a mystic problem with sending parametrs from one page to another.
In one of ExtJs methods i send parameter by POST to another page:
autoLoad : {
url : url_servlet+'form.jsp',
params: str,
...
2
votes
1answer
312 views
Url rewriting rules for static web pages - returning 404 after using url with additional parameters
I use URL Rewriting module for IIS7 - because of URL rewrite for few static files.
Basically I am mapping /pretty-url to /real-file-name.html
So far it is simple.
But after adding query string to ...
2
votes
1answer
311 views
Change URL from controller?
Is there a way to change the current url params from the controller so when the page is loaded, additional/different parameters are displayed in the address bar?
Here's what I mean, say I have an ...
0
votes
1answer
61 views
Accessing json API, custom accept type madness
I'm trying to make a request to this API:
http://services.vrt.be/epg/playlists
Default it returns text/html.
when i query it in a browser like this:
...
2
votes
2answers
274 views
cakePHP: optional URL parameters
probably this is a quick one, but I can't get my head around right now.
I have the following problem using unnamed optional parameters.
Let's say I have the following a action in a controller with ...
0
votes
2answers
41 views
URL Parameter just disapears
I'm creating a link that will add a URL parameter like so
<?php
$cat = 10;
$childcats = get_categories('child_of=' . $cat);
foreach ($childcats as $childcat) {
$catName = ...
0
votes
1answer
117 views
Parameter passing vs local storage
I have a lobby written in HTML5 / javascript. A .json file provides a few config parameters for the lobby and for the various other HTML5 games that can be launched from it. These parameters can ...
3
votes
2answers
341 views
Sending URL as a parameter using javascript
I have to send a name and a link from client side to the server. I thought of using AJAX called by Javascript to do this.
This is what I mean. I wished to make an ajax request to a file called ...
0
votes
0answers
169 views
C# get url parameter namevaluecollection from rewritten url
If the url is not rewritten say like this
&tag=sql&page=3
I would get the parameter collection like this
var parameters = HttpUtility.ParseQueryString(uri.Query);
But if I have something ...
1
vote
1answer
56 views
how to include a url parameter inside a url parameter (It considers the nested parameter as parameter of the original request)
I wish to pass a url like :
localhost:9090/admin/GroupInfo.action?message=redirect.jsp?sop=here&something=other
I want to receive "redirect.jsp?sop=here&something=other" as the value of the ...
0
votes
0answers
47 views
WebKit losing parameters in URLs with skip links
We have some generated pages whose URLs contain parameters, like http://example.com/page.do?param1=hello. These pages contain named anchors inside, <a name="here">like this</a>. And there are ...
0
votes
2answers
894 views
passing variables to perl script from html
I am trying to call a perl script from my HTML page. The way am trying to do is to call the url of the perl script located on the server.
Here is the piece of code:
HTML:
var fname = "Bob";
var ...
1
vote
1answer
97 views
How to recieve the image file in a controller where image is attached as parameter in Ws.url?
The image file is attahced as a parameter through the Webservice Ws.url("controller action").files(imageFile) in play framework 1.2.4. How to receive that image file in that controller? Can anyone ...
0
votes
2answers
207 views
Using prepareFromRequest(PlaceRequest) from GWT presenter widget
I am trying to get a URL parameter from a GWT presenter widget, but I am getting these error messages:
The method prepareFromRequest(PlaceRequest) of type ViewDiagramPresenter must override or ...
-1
votes
2answers
73 views
GET method… Extract variables
Can someone help me how to extract the url parameters from the following url using GET method in php?
...
2
votes
1answer
193 views
Unit Testing Action Parameters in the WebAPI
I'm writing some unit tests for WebAPI controllers, and one of the aspects that I want to assert is that the parameters match.
I've followed the method used in Filip Wojcieszyn's blog, which is ...
0
votes
3answers
388 views
[Resolved]ASP.NET & MVC3 DropDownList and Url Parameters
For my job, i need to develop an web application in order to display a list of the jobs of some bank applications.
Actually, the biggest part of this application have been done but I have to include a ...
1
vote
1answer
83 views
htaccess parameter
I have the following rewrite. The last one is par ID, but I want it variable, has to be ID or Quantity, is that possible?
now:
RewriteRule ^([a-z0-9\-]+)/([a-z0-9\-]+)/([a-z0-9\-]+)/?$ ...
0
votes
2answers
186 views
Web Logic Portlet - get query string
I'm developing a portlet deployed under weblogic server 10. Amongst other functionalities, my portlet need to get some parameters passed in the URL and do something according to each one. Well, my ...
1
vote
1answer
161 views
How do I remove only few url parameters in zend framework
I am trying to develop an application using zend framework (v 1.11). Am totally new to this framework.
I have a URL like this.
http://xyz.local/client/feedback/index/username/abc/page/2
The above ...
0
votes
3answers
210 views
Retreiveing Encoded Value from URL
I have passes a encoded SSO token in URL...so the URL looks like
...
0
votes
1answer
104 views
Eclipse Debug configuration: add parameters #!e on GWT project
I am using Eclipse Indigo to develop a GWT project. At time of debugging I need to set this URL: http://127.0.0.1:8888/MySite.html#!e (edition mode)
But instead the one that is opened is ...
0
votes
0answers
84 views
If I'd like to go directly to form page with by typing direct URL, what would be the URL? [closed]
I'm at the web site ( https://test-example.com/as/an/Check.do )
On this page, there is a form that I enter the numbers into, and calculated answer comes back.
But I have to press agree button before I ...
1
vote
0answers
458 views
Like button stripping URL GET parameters
I am trying to set up a like button to like a specific element so the site responds accordingly when a user follows the link.
I am trying to use XFBML method but have tried the others too - none have ...
0
votes
2answers
206 views
Passing Parameters from e-mail link to jQuery mobile web app
I created a web app using jquery mobile 1.1.1
As part of my app I built password retrieval functionality. If a user needs to reset their password, they fill out a form and receive an e-mail with a ...
1
vote
3answers
2k views
Passing a URL parameter from JSP to Servlet
I'm trying to pass a URL parameter from a JSP to a Sevlet.
My URL is
/portal/faces/student.jsp?owner_id=1030303i
In my JSP i added this
<form action="steg" method="post" ...
0
votes
1answer
61 views
How do I auto-complete an email form field when someone clicks a link in an email?
I have a form that has basic fields: name, address, email, etc. Someone gets to this form by clicking a link in an email send to him/her. How do I build the link in a way that when the person clicks ...
0
votes
2answers
323 views
Pass query params to Erlang HTTP Request
I'm trying to send parameters with an URL, like http://localhost:3000/register?name=Chris&job=typist. I can send that all at once as a string with httpc:request, but I can't find a function to put ...
0
votes
1answer
627 views
How to extract hash substring values from window.location and write them into HTML?
I'm trying to extract hash substring values from window.location and write them into HTML for the user to see, with an URL syntax that disallows use of ? as query string delimiter.
So I am working ...
0
votes
4answers
259 views
Storing a list of key value pairs in a url parameter, javascript.
Assuming www.mydomain.com?param1=example as an example.
What is the best way to store a second parameter that is a list of key value pairs? At the minute I use ¶m2=key|value,key|value. I ...
0
votes
2answers
59 views
Please Help in finding out the Correct Javascript code for me… Please
Here I have two HTML pages, First_page.html and Second_page.html,
In First_page.html I have a code that redirects to a page when a link is clicked with a certain URL parameter.
First_page.html's ...
0
votes
1answer
2k views
javascript query string > window.location.search.substring > using # instead of ? to start query string
I'm trying to extract hash substring values from window.location and write them into HTML for the user to see, with an URL syntax that disallows use of ? as query string delimiter.
Ok, so I have ...




