Tagged Questions
15
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?
3
votes
2answers
490 views
Is it possible to skip a HttpHandler if there is no querystring?
I wrote a dynamic image resizer as a HttpHandler. It's automatically called on anything with an image extension, so for example:
http://www.mysite.com/picture.jpg?width=200&height=100
will run ...
2
votes
2answers
73 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
4answers
455 views
how to retrieve a querystring value from an .aspx page and pass it to ascx page
Is is possible to retrieve the ID value from the Request.QueryString from a aspx file and pass it onto a ascx file in order to successfully update a profile using the retrieved ID?
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
848 views
Get querystring from URLReferrer
I am trying to get the QueryString value like this Request.QueryString("SYSTEM") from a UrlReferrer. I see i can use this Request.UrlReferrer.Query() but it doesn't allow me to specify the exact ...
1
vote
3answers
56 views
Looks like a query string, but won't act as a query string
I am working with VB in asp.net,
The basic problem is, I want to pair up the elements in a string, exactly like request.QueryString() will do to the elements in the query string of the web page.
...
1
vote
2answers
114 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
206 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
1answer
333 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
428 views
ASP.NET: Using Request[“param”] versus using Request.QueryString[“param”] or Request.Form[“param”]
When accessing a form or query string value from code-behind in ASP.NET, what are the pros and cons of using, say:
// short way
string p = Request["param"];
instead of:
// long way
string p = ...
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
0answers
112 views
diacritics in asp.net querystring collection
I'm trying to get a value out of the querystring that has diacritics. The diacritics are encoded in utf-8 %uxxx format, and when I check Request.QueryString["name"] they are incorrectly decoded. ...
1
vote
1answer
897 views
Request.Querystring removes characters from encrypted text
In my application I take a user's e-mail address, encrypt it, and URLEncode it, and pass it along into a QueryString.
email = Server.UrlEncode(aes.Encrypt(email));
The landing page does a ...
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
1answer
43 views
Prevent Viewstate from being sent as a query string in asp.net site
I have a dot.net website and the big search engines seem to want to try and index www.example.com/page.aspx?__VIEWSTATE=lotsofrandomstuffhere
Now I thought I could simply on page load or init check ...
0
votes
3answers
228 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
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
269 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
1answer
86 views
How to pass html via a querystring?
I have comments on my site and because it's its my portfolio I want code samples to be able to be placed however when I try to pass html through the querystring it will stop it because of ...
0
votes
1answer
343 views
how to pass values from one .aspx to another
i have user id by using query string and i want to retrieve other data directly from the database(i dont want to use query string {}& name={}..like that further) anybody can help me pl.. i am ...
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
453 views
Why is Request.QueryString readonly?
I thought you couldn't change the QueryString on the server without a redirect.
But this code works* for me:
Request.QueryString edit
I'm so amazed.
So here are my questions regarding this:
Why ...
0
votes
1answer
306 views
Access file system through query string or params
I have been given a task of reproducing the issue/testing the unauthorized access to file system through request.param and query string.
For instance i have something like this. ...
0
votes
1answer
554 views
How to pass the whole querystring from one page to another page textbox using asp.net?
I have two webform ....
Default.aspx & Default2.aspx
I want In Default.aspx on button click event it passes the whole query string to Default2.aspx textbox ?
How to do that uisng vb.net ...
...
0
votes
0answers
36 views
Different Encoding
I have a problem with users passing different types of encoding via query strings.
Some will pass htmlencoded querystrings like "%EB" and others pure text "ë". The problem is that asp.net handles the ...
0
votes
1answer
1k views
How to get the QueryString from an ashx file?
There is an ashx file containing "ProcessRequest(HttpContext context)" method which gets triggered automatically. When and how does it get fired?
Another question, How can I get the current ...
0
votes
1answer
147 views
asp.net consecutive are backslashes removed from url
I'm having an issue in my ASP.NET web app where intentionally consecutive backslashes are being removed from the request url.
I'll request something like:
localhost/Page/A//C
But when the request ...