0
votes
1answer
17 views

Grabbing data from get request query node.js

I am making fake image request. client side var image = document.createElement("img"); image.width = 1; image.height = 1; image.src = ...
0
votes
1answer
38 views

how to properly escape data with javascript for query string for decoding in PHP [duplicate]

I'm trying to create a query string, which passes all form elements and the entered data via a GET request to a PHP file. I'm using encodeURIComponent in JavaScript to encode the input field names as ...
0
votes
1answer
54 views

Get Querystring value using c#

I am using the below code to assign the iframe src through javascript.It's working fine. But in c# code behind i got the query string like this. id=Y&amp%3bcust_id=100&amp%3. How can i reduce ...
0
votes
1answer
22 views

querystring space between chars

script var end = new Date().toLocaleString(); var url = '/Widget/GridExportToExcel?end=' + end; console.log(url); console output: 16+5+2013+14%.... There are "pluses" instead of spaces, so in ...
0
votes
1answer
28 views

javascript add querystring within script

I am using the galleria script for my website, with the facebook mod. I want to modify it a bit, so the albumid that should be showing, is the ID given in query string. My code is: ...
1
vote
4answers
29 views

Selecting Radio Option based on Query String

I'm having some trouble with selecting the radio option affiliated to the query string. I have the following code in place... <?php if ( $_GET['fp'] == 'floorplanfive' ) { ?> <script ...
0
votes
0answers
47 views

asp.net webform to handle variable in js as well as in aspx.cs file

I am enhancing/supporting development activity of web application build in asp.net web form. I would like to store a string containing ids separated by '-' keyword. when page completely load two ...
0
votes
3answers
33 views

assign a new value to a $_GET variable

We always retrieve the value in a $_GET['var'], but is it possible to assign a value as well? I have a php page where at one point, through ajax, I want to stay on the same page but change the query ...
1
vote
1answer
141 views

Set query string value of iframe in jquery?

Iam having Two Page Parent.aspx and Child.Aspx, in Parent.aspx i have used iframe to cal Child.aspx. But when i load Parent my Child Page Load is getting called, which i need it based on Condition, ...
0
votes
1answer
56 views

javascript if url has query string, set cookie

How do i set a cookie if the url has a query string '?no_redirect=1'? I'm not getting any cookies being set. Currently i have function cookieQuery() { var referrer = "//domain.local"; if ...
0
votes
2answers
49 views

jquery load invocation results in empty query string

I have this file: "myFile.html" where I simply want to display the value of xxx from the query string. I extracted the following with the help of other threads. I used purl and also a custom function. ...
0
votes
3answers
159 views

Phonegap adding multiple FileTransfer params of the same key, but different values

I am using phonegap to upload a file to a server and it is working well with a single exception... var options = new FileUploadOptions(); options.fileKey = "file"; options.fileName = file.name; var ...
2
votes
1answer
76 views

Understanding SVG query-string parameters

I created an SVG file that I intend to use as a background image in CSS. I want to be able to change the fill color in the SVG using a query-string parameter, like so: #rect { background-image: ...
0
votes
2answers
79 views

2 words string is not passing through Query String

I am trying to pass multiple values through query string, and I have done a lot and able to pass the values which are of single word to php page using jquery. But when I am trying to pass the name of ...
0
votes
1answer
48 views

Add GUID to URL in 2 cases

I have successfully been able to add a GUID to a URL using Javascript. This is my code I am using currently: <script> if ((navigator.userAgent.match(/iPhone/i)) || ...
1
vote
1answer
115 views

Get querystring array values in Javascript [duplicate]

I have a form that uses the get method and contains an array: http://www.example.com?name[]=hello&name[]=world I'm trying to retrieve array values 'hello' and 'world' using JavaScript or jQuery. ...
0
votes
1answer
127 views

Add query string or GUiD to the end of URL on page load using Javascript

I found an example on how to create a GUID with Javascript, but how would I get the current page URL and append the GUID to it using jQuery or Javascript. function S4() { return (((1 + ...
0
votes
1answer
84 views

Fullcalendar function to create event data from url query string

I'm trying to take some parameters passed in the url as a query string and create the necessary event arrays to load data into fullcalendar. I have looked at the event function for taking data from a ...
0
votes
2answers
79 views

How to create a redirect page within a query string in javascript?

I have a website which changes the content of the page depending on what the user puts into the url. There is only one page, but it seems like there are more because of the .htaccess I have used. ...
-2
votes
1answer
81 views

How can I create a redirect page within a query string in javascript [closed]

Essentially, I have a website which changes the content of the page depending on what the user puts into the url. There is only one page, but it seems like there are more because of the .htaccess I ...
4
votes
1answer
732 views

How to add Querystring parameter from Code behind using javascript in asp.net?

I am opening a page onClick event using javascript from code behind. But i want to pass querystring parameter and access it on another page. string id=1; teammember.Attributes.Add("onclick", ...
0
votes
2answers
368 views

Get the query string value and display it in my html page

After redirecting to home.html page, i can see the querystring values which i had given in the previous page. Home.html?FirstName=dd&LastName=ee&smtButton=Submit And am getting the result ...
1
vote
2answers
86 views

Append URL with form input

This is my first attempt to write anything in javascript, although this does exactly as intended, I am sure it can be done simpler. Not that this script is all that useful, just an exercise in ...
3
votes
1answer
127 views

javascript var from web view

I have this javascript <script> var s_u ="go_r.php"; var con ="df7cf40eca520dc1ba6941a30cbffc23"; var idm ="65212"; var sass ="0"; var n_x =naxer(); ...
0
votes
2answers
47 views

Random query strings appearing when including scripts

On my website I am having issues with random query strings appearing when I include scripts on my webpage. I know it's not me as both Pingdom & Google Pagespeed have confirmed that I have random ...
1
vote
3answers
43 views

Unsure how URL is constructed in php website

There is an html table in my page with 3 columns, each one of them contains a form like this <form id="filter" method="get" action="advanced_search_result.php"> <input type="hidden" ...
0
votes
3answers
81 views

Get the query string on the called javascript file

Is it possible to get the query parameters with javascript on the called javascript file like this: // in html <script src="/file.js?query=string"></script> // in file.js ...
0
votes
1answer
101 views

Grab form input onBlur to create a querystring

First a little background... I'm working on a database project that gathers its data via a web form from printed labels associated with museum specimens. Part of the form includes several Locality ...
0
votes
0answers
76 views

Server not recognizing special characters sent from client

In my C#.NET web application, using IE8, I'm using javascript to insert special characters (¿, «, ») into a URL query string which will then be parsed by server code. However, the server does not ...
0
votes
3answers
46 views

Most efficient way to retrieve numbers from a querystring?

I need to parse querystrings that contain both text and numbers. For example the following querystring: ?userID=12&team=Sales&quarter=Q1&count=2310 should be translated into the ...
2
votes
1answer
122 views

Query String parsing: Handling both & and ;

I've found plenty of articles on StackOverflow that mention fast ways to parse query string's in Javascript, but what I haven't found is how to handle both & and ; as a delimiter. Now, I assume, ...
3
votes
2answers
86 views

Conventions for querystring parameters

When I have a url like this: http://server/site?firstname=Jack&lastname=Daniels I understand that in my JavaScript a query for firstname should return "Jack". But what should the query for ...
0
votes
1answer
151 views

Creating a querystring based on what option is selected from a drop down menu

I have this drop down menu: <select name="Filter" onchange="applyFilter(this);"> <option name="Item1" id=Item1 value="10.5">Test1</option> <option name="Item2" id=Item2 ...
0
votes
1answer
100 views

Query String with escape characters

I need to pass some values from a textbox on a certain page, as a query string, and then receive it in another page. The thing is want to send the escape characters for new line of the textbox ...
0
votes
1answer
563 views

Passing Parameters to iframe without query string - ASP.NET

In my ASP.NET application, there is a main.aspx which includes heavy grid data. In order to display Google Maps in main.aspx, I've made a map.aspx page which is given as frame reference in main.aspx. ...
0
votes
1answer
93 views

How to parse variables in querystring using Express?

I have a request being sent to the server: "/stuff?a=a&b=b&c=c" Using express, how do I get these values? I have tried the following... app.get( "/stuff?:a&:b&:c", function( req, ...
1
vote
3answers
152 views

Declare a variable in a URL and assign it a value in Javascript when navigating to a page

I'm relatively new to HTML (and programming in general), and I'm trying to declare a variable and assign it a value when I navigate to a page. What I have is a line of code like this: function() ...
0
votes
0answers
167 views

Ajax queryString - which variables should I use

I've watched an AJAX tutorial and I think this is the code that suits my situation. <script language="javascript" type="text/javascript"> <!-- //Browser Support Code ...
0
votes
3answers
94 views

How to send a GET request with a specific query string to my page using Jquery?

This code toggles the color of an element whenever you click on it. But how can I send a GET request with query string ?toggle=True on the first toggle and ?toggle=False on the second one?
0
votes
4answers
1k views

javascript get querystring [duplicate]

Possible Duplicate: obtaining querystring from current url in javascript? I was to get everything after the question mark in the url. Ive seen a way to do it that does not require a ...
0
votes
3answers
112 views

Deal with query strings in JS, like http_build_query, etc

Here's what I have if(condition1) { location.href = location.href+'/?site_type=normal'; } else if(condition2) { location.href = location.href+'/?site_type=other'; } Of course, if the ...
0
votes
2answers
57 views

How can I build a querystring from an object? [duplicate]

Possible Duplicate: querystring encoding of a javascript object I'm trying to make a request to a website and embed the result as an iframe in the page using javascript. I need to pass a ...
2
votes
1answer
118 views

shorten querystring for searching and many filters

i am building a search function which use many filters. i decide to use the get method instead of post (different reasons). Problem is, when using many filters the querystring gets very long, ...
0
votes
1answer
235 views

Javascript to parse GET parameter from string - what is throwing this off?

I have been using the following function to get regular parameters from the current url: function getURLParameter(name) { return decodeURI( (RegExp(name + '=' + ...
0
votes
4answers
834 views

passing values from popup window to parent window

I have create a page(creation.aspx) with a button. A popup page(pass.aspx) open in a new browser window When i click the button . And some operation made in a popup window and then click submit button ...
2
votes
1answer
181 views

Using JavaScript Regular Expressions to Parse a Query String

The goal is to parse out the arguments embedded in the hash portion of a URL. Someone on StackOverflow community provided the following code as a response to a similar question. The community chose ...
0
votes
1answer
158 views

Query string removal before refresh

When a user refreshes my page, I want to remove the query string (not alter values but completely remove it) that MIGHT be there before the refresh actually gets sent to the server. I'm doing this as ...
2
votes
1answer
148 views

How to insert form controls value in QueryString in HTML?

I am facing a problem with inserting HTML form control's values in QueryString while redirecting to a next page. I can give static values in a QueryString and I could retrieve those values using ...
1
vote
2answers
229 views

passing parameters in javascript

I have a firePie.aspx page in c# which just has a button and when it's clicked do this, protected void Button1_Click(object sender, EventArgs e) { string cadenaValor, valores; ...
0
votes
2answers
107 views

Sending a serialized data from js to server side in a variable

I am trying to send a serialized data through query string/variable in a url. As you know when we do a serialize in js it builds a query string itself. I am sending this data to server side which is ...

1 2 3 4 5