Tagged Questions
17
votes
11answers
15k views
How do you test your Request.QueryString[] variables?
I frequently make use of Request.QueryString[] variables.
In my Page_load I often do things like:
int id = -1;
if (Request.QueryString["id"] != null) {
try
{
...
14
votes
5answers
4k views
Request[“key”] vs Request.Params[“key”] vs Request.QueryString[“key”] C# asp.net
Request["key"] vs Request.Params["key"] vs Request.QueryString["key"]
Which method do you seasoned programmers use? and why?
7
votes
3answers
144 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:
...
3
votes
3answers
460 views
Using Request.QueryString, slash (/) is added to the last querystring when it exists in the first querystring
this is my first post on stackoverlow and I couldn't find a solution to this in any other posts, so here it goes:
I have a web page that is sending two query strings in the url:
...
2
votes
2answers
59 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 ...
2
votes
3answers
166 views
How do you name your query string variables? Short or long? Why?
In our code we have query string variables with very short names such as cId, iId, isA and u. It is very hard to tell what this variables are from their names. I want to use more descriptive names ...
2
votes
1answer
162 views
Getting QueryStrings from WebRequest
Lets say i have this:
WebRequest myWebRequest1 = (WebRequest)asynchronousResult.AsyncState;
i know that i can get the url like this myWebRequest1.RequestUri but i was wondering if there is any way ...
1
vote
2answers
113 views
Handling Potentially Dangerous Query String
My project implements search (from default HTML page) and will redirect to the search page (ASPX page) and I'm using query string to pass the search value. I'm getting potentially dangerous ...
1
vote
3answers
205 views
asp.net C# Request.QueryString[“sms”] + sign
my client have 2 server and from first server then want to send a request with some parameters and the second server take those parameters with get method, the problem is when the request come there ...
1
vote
2answers
114 views
What to use for passing data between pages in this common scenario
My scenario is that the user selects a number of options (for filtering records) and then
he clicks a button . The result (retrieved records from DB) will be displayed in a
new page .
Would you ...
1
vote
7answers
217 views
CustomerId and Request.QueryString in ASP.NET
Request.QueryString is not very safe. Incase someone is logged in.
Just by typing in the URL
myaccount.aspx?custId=10
One can get the information of another Customer.
So its not safe at all. The ...
1
vote
5answers
634 views
Object reference not set to an instance of an object
When I try to open the page from my IDE in VS 2008 using "VIEW IN BROWSER" option I get "Object reference not set to an instance of an object" error.
The piece of code I get this error :
...
1
vote
1answer
329 views
How can I stop asp.net from re-appending querystrings on form post back?
I am developing a simple rating system for my employer's profile based web-app. Here is my problem:
The actual page is domain.com/review.aspx?user=username, but I use the url-rewrite module in IIS ...
1
vote
2answers
161 views
How should I process the values of optional Query Strings?
I'm pretty new to C# and ASP.NET, so bear with me on this one. I'm setting up a page that receives query strings from the url. It then passes these strings to another method (in another class, ...
1
vote
4answers
2k views
Whats the problem with this encrypted QueryString- Invalid length for a Base-64 char array
I am encrypting a text and sending it via QueryString.
"8ZnSq13yv2yYVDsehDnNUNp/yIFqsAQh4XNPbV1eLMpk/dMWpc/YnMMEBy29MlgcYqpV2XPOf/Rpiz5S85VN/fkLbGTCkL/clBHh983Cp s="
The Decrypt Function is given ...
0
votes
3answers
227 views
Response.Redirect Same Page RadioButtonList SelectedItem
I'm trying to do a job filter for the list of jobs on our website. The filter for the job type is wrapped in an UpdatePanel and the button to apply the filters redirects back to the same page.
This ...
0
votes
1answer
270 views
Serialize querystring as Json in C#- values don't show up, only the keys. Why?
I'm trying to serialize a querystring to JSON in C#. I'm not getting the results I expected, and am hoping someone can explain. Some reason I'm only getting the query "name" and not the "value".
...
0
votes
2answers
131 views
Request.QueryString in asp.net
My code is work well but i want to send "Item" and "Mode" in encrypted form.any built in method in asp?if not plz suggest alternative solution.
string url = "QueryStringRecipient.aspx?";
url += ...
0
votes
3answers
260 views
Reading special characters from URL query string
I have a situation where the user is able to enter any characters they want in a URL query string.
Example:
http://localhost/default.aspx?ID=a‡jljglkjg
How can I accept special characters such as ...
0
votes
4answers
292 views
C# Security: check query string for valid .pdf filename
I'm modifying an .aspx page that uses some javascript to download a file based on the value attribute in this tag:
<input type="hidden" id="launchDocument" ...
0
votes
2answers
272 views
c# Request.QueryString 2 Values
I have url being passed to my page something like /default.apsx?id=123&user=justin
In my code I already have a request.querystring running to grab the id but I need also to grab the user how ...
0
votes
2answers
315 views
System.ArgumentOutOfRangeException: Index was out of range
I Have another Issue with my Code (ARGGGH!) I have a request.querystring that I am calling and i get the following error Index was out of range. Must be non-negative and less than the size of the ...
0
votes
6answers
6k views
Converting Request.QueryString to integer
How do i convert a Request.Quesry string to an integer value. I've tried all the Convert.ToInt32 and Int32.Parse but it says Input string is not in the correct format. Im using the string value as an ...