0
votes
2answers
20 views

How to extract parameters from a URL regardless the way it written by?

I want a java way to extract the parameters of a URL regardless the way these parameters are written in it, in the regular way like( ...
0
votes
1answer
28 views

ASP.Net page: Chrome adds a #b to the URL?

when I open the URL http://mycomputer/web/Page.aspx?OfflineMode=false&ID=2 Chrome will make it look like: http://mycomputer/web/Page.aspx?OfflineMode=false&ID=2#b The problem is that I ...
0
votes
1answer
59 views

PHP: Add/Replace URL GET parameter depending on current URL

I’ve tried for some time now to solve what propably is a small issue but I just can’t seem get my head around it. I’ve tried some different approaches, some found at SO but none has worked yet. The ...
0
votes
2answers
117 views

Javascript regular expression to parse path string

I have an application that shows photos and albums to a user. Based on current state of the application I show appropriate view. Everytime view changes I change the url, controller then gets the url ...
0
votes
1answer
22 views

How to set window resolution in url

On button click, I have written a code to open application in another browser eg: Process.Start(firefox, url); In the URL, I would like to pass window width and height parameter. Something like ...
0
votes
1answer
53 views

Adding additional Variable to URL

I'm trying to add additional variables to the url. Eg: example.co.uk/searchtestingv2.php?categories=rockandpop and add: &prices=PriceLow ...
-1
votes
4answers
71 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
99 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 ...
0
votes
0answers
32 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 ...
3
votes
2answers
184 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.) ...
1
vote
2answers
134 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 ...
0
votes
4answers
251 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 &param2=key|value,key|value. I ...
0
votes
1answer
1k views

How to Pass Variable and not values in URL in jsp page

I have a String called var2="ASDFDE" whose value keeps changing. Now I want to pass this variable(row_id) in URL. For that I may need to write action=action.jsp?var1=var2 In the action jsp page ...
0
votes
3answers
508 views

Chrome Extension: Get Parameter from URL [duplicate]

Possible Duplicate: Get query string values in JavaScript I am working on a extension for Chrome. I already figured out how to get the URL from the actual Chrome-Tab. ...
1
vote
2answers
1k views

Ruby on Rails - Passing values to a link_to

I'm a RoR beginner and am using Rails 3.2.3. I have a search form on my page and it performs a get request and filters the results correctly. I want to add the possibility of also searching Products ...
0
votes
1answer
40 views

array in url API request

I have to call an API from my programm. The API is on a remote server and i have to give the paramaters trough an url the parameters i have to give are the following (not the real data of course) ...
7
votes
2answers
420 views

What are the URL parameters? (element at position #3 in urlparse result)

I've taken a look to urlparse.urlparse method documentation and I'm a little bit confused about what is the parameters part (not to be confused with the more familiar query part, that is what goes ...
1
vote
0answers
280 views

Asp .Net framework 3.5 Sitemap.CurrentNode returns null When using URL Rewriting with parameters

I'm using Asp .Net framework 3.5, SiteMap And URL Rewriting with Global.asax. Everything works except when I passing parameters in the Url (for example MySite/Products/Some-Spesific-TV) The SiteMap ...
0
votes
1answer
1k views

how to send url parameter in POST request without form

I have to pass a parameter in url. I can't send it in as usual GET request the variable and value is shown in the address bar with the request. So, the end user can change the value for this variable ...
1
vote
5answers
635 views

JS/HTML5 remove url params from url

i have an url like this /users/?i=0&p=90 how can i remove in js the part from ? to 90 can any one show me some code? EDIT i mean doing this with window.location.href (so in browser url ...
2
votes
1answer
932 views

Best way to add parameter to the current URL in ASP.NET MVC3

I ask a similar question here, I need to keep current URL and add new parameter to it, the only answer (yet) is : RouteValueDictionary rt = new RouteValueDictionary(); foreach(string item in ...
3
votes
3answers
6k views

How to replace url parameter with javascript/jquery?

I've been looking for an efficient way to do this but haven't been able to find it, basically what I need is that given this url for example: ...
3
votes
2answers
3k views

How can I create a Wicket URL that hides its parameters?

I'm currently creating a set of links with code like this: BookmarkablePageLink<CheeseMain> havarti = new BookmarkablePageLink<CheeseMain>("havarti", CheeseMain.class); ...
0
votes
4answers
370 views

jQuery: Variable from URL, with ÆØÅ and what not

I use a script to get a variable from the URL and decode it - "userName" to be preciese. However the script only works with English characters, and not Danish or other Latin characters. How can I get ...
1
vote
4answers
1k views

Securly Passing variable values from one page to another page

When passing variable from one page to another To avoid the user messing around with the URL parameter Values Is it best to ... 1) pass the variable via session 2) pass the variable in the URL ...
3
votes
5answers
2k views

Regex to get value of a numeric URL parameter?

In a url like the one below, I'd like to get the value of ProdId. The URL format will always be consistent, as will the parameter name, but the length of the value may change. It will always be ...
1
vote
1answer
177 views

What is the best URL strategy to handle multiple search parameters and operators?

Searching with mutltiple Parameters In my app I would like to allow the user to do complex searches based on several parameters, using a simple syntax similar to the GMail functionality when a user ...