The request.querystring tag has no wiki summary.
0
votes
1answer
26 views
Issue of not playing video
I have a issue on not playing video in play.aspx page im getting id in Url like this
play.aspx?id=1
when user get th play.aspx page for watch video i write a code in paly.aspx page on in html tag ...
0
votes
1answer
9 views
Does successful form elements are submited as parameters automatically on AJAX calls?
Do we have to include all form elements (ids and values) manually in the query string when making an Ajax call, or they are automatically (according to standard) included as parameters to the query ...
0
votes
0answers
28 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
39 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
63 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
39 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
125 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
821 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
125 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
128 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
424 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
37 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
172 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
96 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
140 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
39 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
132 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 ...
0
votes
1answer
223 views
MsRdpClient - open with querystring parameters
I'm currently trying to open an MsRdpClient connection in a web browser by opening a new tab and passing it dynamic server names. However, the following code doesn't seem to work and I can't ...
1
vote
1answer
233 views
Request.QueryString returns '<%=Request.QueryString('ID')%>' issue vb.net
I have an issue the Request.QueryString. When users clicks a button, the page supposed to redirect to another url with some value on it.
The current page has this url
...
3
votes
1answer
137 views
GET with hyphens raises error 403
I have a PHP script which handles callbacks from a payment processor.
If the querystring 'result' contains double dashes followed by a single, we are getting a 403, e.g.
/index.php?result=A--B- ...
-2
votes
2answers
182 views
Try/Catch Block - Exiting from try code
I have this C# code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.OleDb;
using ...
-2
votes
3answers
1k views
Value cannot be null. Parameter name: String
Please take a look at the following code. its in the handler.asxh.
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "application/json";
new ...
0
votes
0answers
107 views
How do I pass the querystring on from one wcf service to another wcf service?
I'm writing an external rest api for an asp.net mvc3 application. I'm using ServiceRoutes to add the routes. My question is the external wcf service will need to call some existing services.
If ...
0
votes
0answers
30 views
Mod_Rewrite Rules
I'm currently developing a new template and system using PHP and MySQL that essentially circumvents a current shopping cart system built with PERL and Smarty Templates. My system accesses the database ...
3
votes
1answer
2k views
How to pass the value from one asp page to another asp page using queryString?
How to pass the value from one asp.net page to another asp.net web page using queryString.It means test1.aspx and test2.aspx are two web pages.
In test1.aspx, i have the string value,
string ...
0
votes
1answer
735 views
How to pass the value using keypress event of asp textbox?
Hi i am writing asp textbox controls. I want my pass the id using keypress event. Below code i am using but i m getting error.
The server tag is not well formed.
.aspx page
<asp:TextBox ...
0
votes
0answers
235 views
“Input string was not in a correct format” error with ASP.Net QueryString
Folks, I'm now having an annoying error with ASP.Net QueryStrings.
I used the querystring to pass values from one page to another in my ASP web app.
So that, I can change the form viewing mode of ...
2
votes
2answers
729 views
0
votes
2answers
615 views
jquery POST data in aspx page
I post data to my aspx file qith the following code:
$.ajax({
type: 'POST',
url: "Ajax_Text.aspx?rand=" + myRand
+ "&id=" + ...
0
votes
0answers
88 views
Appending to a QueryString
Imagine you have a menu with categories. Each of which contains a link to the parent page, but with a querystring. For instance:
<a href="?category=5">Category 5</a>
This shows some ...
0
votes
0answers
245 views
Request.QueryString decoded charset
I'm having some issues with how ASP.NET decodes the QueryString with national characters on Request objects. I started having problems when moving a web application (ASPDotNetStorefront to be ...
0
votes
2answers
305 views
QueryString not accepting & - Needs to
I need to be able to handle an HTML encoded ampersand in my .Net code.
So the Url is
http://myite.com/index.aspx?language=en&Refresh=true
There is no way of changing this as it has been ...
0
votes
1answer
232 views
is there a simple way to get URL in java
I am working on an email validation link for a website. When a user registers and finishes filling in their personal data (and it passes all the checks), they are sent to a jsp page saying that an ...
0
votes
1answer
480 views
Pass a value using Request.QueryString when I doubleclick
I have a gridview and I want to pass a value from a row cell to another page. Based on the value which is a string, I can run a specific query and fill another gridview.
My problem is, that when I ...
0
votes
2answers
444 views
c# how to request url parameters and change char
After getting some url parameters, I would like to use them later in my c# code, but in a slightly different format.
...
0
votes
2answers
180 views
QueryStrings.AllKeys != RawUrl?
Request ["fileName"] return null?? Why?
Full image: http://i.stack.imgur.com/U1MzX.jpg
Controller:
Full image: http://i.stack.imgur.com/DCQNG.jpg
Route
public static void ...
0
votes
1answer
1k views
httpcontext.current.request default return value if not set
I've spent a lot of time googling this and testing in my program, but I can't get any output. I'm coding in C# codebehind aspx. I'm trying to query the url of
...
0
votes
4answers
706 views
Afterwards Model Binding in ASP.NET MVC: How to convert QueryString values into a view model?
I have an action method without parameters.
The QueryString collection contain all of my values. The keys of the QueryString match my view model properties.
var queryStringValueProvider = new ...
0
votes
3answers
203 views
How to remove partucular list of querystring from current page url querystring in c#2.0
Say my current page url has got (http://mysite/english/faq.aspx?faqid=12123&cid=4545&intcid=65456&h=man)
string excludeQuerystring = ...
1
vote
1answer
411 views
Windows Live API oauth 2. Reading a query string that contains page.aspx?#access_token=fhuevhkfu3q9
I been working with OAuth2 to provide authentication techniques on my asp.net 4.0 website using c# in the code behind. I have noticed recently that Windows Live api is no longer working in the code I ...
0
votes
2answers
527 views
Remember the page after session timeout
In my website I want to redirect the user to the same page on which he/she was before the session timeout.
I tried it by sending the url through querystring, but it didn't work out as the url also ...
0
votes
4answers
295 views
Saving QueryString to protect URL manipulation
Is there a way to save the querystring ids after the page load? the reason why i am looking is that ...i should be back and forth with pages and more importantly if the user try to manupluate the ids ...
0
votes
1answer
130 views
URL with large query-string in AFNetworking
I'm using AFNetworking in my iPhone application for building an http get request. In general I append all the parameters in the query string. The problem is that one of this parameters is a list of ...
0
votes
1answer
286 views
Encoding ASCII character 0 terminate query string in classic ASP
I received the encoded querystring which include ASCII Char 0 (http://localhost/Test_Authentication.asp?token=%13%23%02%00%01%01%00%01%01%05%02%02%03%00%02%02%0A%0A%0A%0A%0A%0A048 ) and when I ...
2
votes
3answers
1k views
ASP.NET QueryString without equals sign
When I have a url like:
http://www.mysite.com/?MyTest=
MyTest shows up as a key in the querystring of the request object.
If I remove the = sign like:
http://www.mysite.com/?MyTest
It no longer ...
0
votes
1answer
177 views
Sitefinity PageControl QueryString values
We're upgrading a project from Sitefinity 3.7 to 4.4 and some of our controls need to be updated. Apparently we now have to have our UserControls inherit from PageControl, but when you do that there's ...
-1
votes
1answer
376 views
asp.net error retrieving from database when query string contains number
i am using a dataset to retrieve some info from the database like this:
protected DataSet getInfo() //getting the user info
{
string id = Request.QueryString["User"];
SqlCommand cmd = ...
0
votes
1answer
2k views
Set the value for a hidden parameter from the URL using javascript
I'm trying to set the hidden field for 'item_number' from the Url QueryString for a paypal form.
So the URL will look like this "http://website.com/customize.aspx?item_number=FFFF"
and code:
...
7
votes
2answers
4k views
Request.QueryString[] vs. Request.Query.Get() vs. HttpUtility.ParseQueryString()
I searched SO and found similar questions, but none compared all three. That surprised me, so if someone knows of one, please point me to it.
There are a number of different ways to parse the query ...
8
votes
3answers
2k views
Plus sign in query string for ASP.NET site
I few years ago I created a database driven ASP.NET site, which uses a single APSX page to display all site pages. So all the URLs of the site are in the following format:
...








