The request.querystring tag has no wiki summary.
0
votes
0answers
7 views
Query string in client side
I am a beginner in using ASP.NET and JavaScript. I've stumbled upon this problem:
In my page1.aspx, I use Response.Redirect("page1.aspx#download") using an anchor.
Now, I want to get the ...
1
vote
5answers
34 views
“&” inside QueryString value
I'm using QueryStrings for users to auto-select values from a drop down list. Some of the values in this drop down list contain "&" in them.
E.g. "Acquisitions & Development"
When the user ...
1
vote
6answers
52 views
asp.net querystring
I have the following page querystring:
register.aspx?id="jSmith"
I have the following code to retrieve the value of ID
string qString = string.IsNullOrEmpty(Request.QueryString["id"]) ? ...
0
votes
1answer
32 views
IPN Request.Querystring
Within PayPal i have my notify_url set and it works nicely.
However I want to capture the QueryString such as tx, amt and item_number
I have the following SQL command that I place into the Verify ...
0
votes
2answers
102 views
How do I maintain a specific query string across all requests?
If someone goes to our website with a query string key of ref (for example mysite.com/AboutUs?ref=Test), is it possible to maintain that query string on all future links/form posts?
So for example, I ...
1
vote
1answer
433 views
How to get query string parameters in java play framework?
I'm very new to java play framework. I've set up all the normal routes like /something/:somthingValue and all the others. Now I want to create route the accepts query parameters like
...
0
votes
1answer
85 views
Using 'querystring.parse' built-in module's method in Node.JS to read/parse parameters
Scenario:
Consider the following code:
var querystring = require('querystring');
var ParamsWithValue = querystring.parse(req._url.query);
Then I am able to read any query string's value.
E.g: If ...
0
votes
2answers
92 views
Integration Tests in grails: getting null in query string parameter
I'm doing integration tests for controllers in grails.I need to pass query string in test case and I'm passing it as controller.request.queryString for the same.
My tests is getting failed. It's ...
0
votes
3answers
229 views
How to parse/read multiple parameters with restify framework for Node.JS
Scenario: We developer are trying to replace a web service (written in C#.Net) with Node.JS Restful API.
Issue: Now we need to handle the incoming request as is (we don't have control over it). So ...
0
votes
1answer
28 views
ISAPI Rewrite Block Requests With Keywords in Query String
How can I block requests with certain keywords in the query string using ISAPI Rewrite.
i.e. lolita, model, girl etc...
Query_String Example:
...
0
votes
1answer
150 views
Run db query IF querystring not null c# razor
I'm new to C# Razor and I want to run a very simple process - essentially I want to run a news page. If the page link contains an ID, I want the page to query the db against that value, e.g:
var ...
0
votes
0answers
79 views
override Request.QueryString
Hello fellow seasoned developers!
I was wondering if it were possible to override the .Net Request.QueryString object somehow? It would be really nice if this could be done without having to create ...
1
vote
6answers
123 views
query string error
Why is this code throwing a NullReferenceException?
Exception:
System.NullReferenceException: Object reference not set to an instance of an object.
Code:
if ...
0
votes
0answers
35 views
Cluetip not working when value is changed by jquery
With reference to this post I created JQuery- Change href of anchor tag using value in Div
I have some problems with making the cluetip work. Basically, the steps I am doing is as follows:
In tag, ...
0
votes
0answers
129 views
Iframe content does not show when using IE9 but it shows in Chrome, Safari and Opera
I am using iframes in order to display charts on customer web sites. For this reason I need to pass variables in the query string in the iframe src as follows:
<div>
<iframe ...