473,672 Members | 2,666 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Check Existence of QueryString

What is the easiest way to check if a particular QueryString exists?

I want to know if the QueryString was ever passed rather than whether it
contains a value or not.
Jul 22 '05 #1
5 23501
"Keith" <@.> wrote in message news:e#******** ******@TK2MSFTN GP14.phx.gbl...
What is the easiest way to check if a particular QueryString exists?

I want to know if the QueryString was ever passed rather than whether it
contains a value or not.


What's the difference?

If Request.QuerySt ring() <> "" Then {whatever}
Jul 22 '05 #2
Keith wrote on 31 jan 2005 in microsoft.publi c.inetserver.as p.general:
What is the easiest way to check if a particular QueryString exists?

I want to know if the QueryString was ever passed rather than whether
it contains a value or not.

http://localhost/test.asp?qwerty=
and
http://localhost/test.asp?a=1&qwerty=zzz

using test.asp:

<%
response.write instr(request.q uerystring,"qwe rty=")>0
%>

will both write:

True

=============== =============== ===========

http://localhost/test.asp?qwertXy=7

will write:

False
--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Jul 22 '05 #3
Not to pick nits, and probably not a concern to the original poster but

test.asp?newdat a=xxx
test.asp?morene wdata=yyy

would both get hits for "newdata="

If that is a possibility then a more complex condition must be checked.
Something like the following (not tested, may need tweaking)

lcase(left(requ est.querystring , len("newdata=") ))="newdata=" Or _
instr(request.q uerystring,"&ne wdata=")>0

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Evertjan." <ex************ **@interxnl.net > wrote in message
news:Xn******** ************@19 4.109.133.29...
Keith wrote on 31 jan 2005 in microsoft.publi c.inetserver.as p.general:
What is the easiest way to check if a particular QueryString exists?

I want to know if the QueryString was ever passed rather than whether
it contains a value or not.

http://localhost/test.asp?qwerty=
and
http://localhost/test.asp?a=1&qwerty=zzz

using test.asp:

<%
response.write instr(request.q uerystring,"qwe rty=")>0
%>

will both write:

True

=============== =============== ===========

http://localhost/test.asp?qwertXy=7

will write:

False
--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Jul 22 '05 #4
"Keith" <@.> wrote in message
news:e%******** ********@TK2MSF TNGP14.phx.gbl. ..
What is the easiest way to check if a particular QueryString exists?

I want to know if the QueryString was ever passed rather than whether it
contains a value or not.


Response.Write IsEmpty(Request .Querystring("v al"))
Jul 22 '05 #5
Chris Hohmann wrote:
Response.Write IsEmpty(Request .Querystring("v al"))


More to the point, Request.QuerySt ring("val") is an *object*, and one with a
property already suitable for this task:

Request.Queryst ring("val").Cou nt

The .Count property will return 0 if the parameter is not present and 1 (or
more) if present.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2641
by: Deepster | last post by:
Hi Guys Here is what I am doing ... Have a page default.asp which looks at the url and checks for querystring's. if there are none passed goes to a function. if there are particular querystrings passed goes to the respective function. Now there can be only 2 valid querystrings that can be passed and only one at a time. How to do i check for querystrings that dont exist and send them to error page? for example I have QS(querystring) ID...
2
13029
by: Imran Aziz | last post by:
Hello All, I have ASP.net , C# pages checking for query string variables, the old ASP has a count property that one could check for each key/value pair to determine if it is available in the query string or not, but ASP.net does not have that for each key/value, instead there is a count for all items in the query string. Say if I have a query string variable called key1=value1 how do I check if key1 was set or not? Thanks a lot in...
2
2458
by: www.MessageMazes.com | last post by:
Greetings, I'm experimenting with an ASP page that reads data from a file name that is passed to it as a parameter, as in this page, which works, because the "good" file exists. http://mazes.com/asp-maze/customized.asp?file=good&firstname=jwk (make "your name is an amazing asp.general programmer" mazes. But when I try this page, with the "bad" file which does not exist, I'm
5
3303
by: Gary Wessle | last post by:
hi or is there a better way to check the existence of "py" in a string "s"? string s = "djrfpyfd"; string t = "py"; string r = s.substr(s.find("py"),2); cout << (t==r) << endl;
25
29741
by: pamelafluente | last post by:
Hi Guys, I have the following HTML code which is doing a GET to a page, say MyUrl.aspx : <body> <form name="form1" method="get" action="MyUrl.aspx" id="form1"> <input type="hidden" name="ClickedElement" id="Messenger" /> </form> </body>
2
72435
by: shapper | last post by:
Hello, How can I check if a parameter, for example "name", is available in a QueryString? I need to create a default value if the parameter is not available. Thanks, Miguel
10
8028
by: Dieter Pelz | last post by:
Hallo, what is the best way to check the installation of mfc80 and vcrt sidebyside assemblies? Best Regards, Dieter Pelz
3
4164
by: trint | last post by:
How can I do this with my c# code with my website(because the file is there, but the code doesn't return it)?: if(File.Exists(String.Format("~/images/categories/{0}", sFileName)) return String.Format("~/images/categories/{0}", sFileName); else if(File.Exists(String.Format("~/images/products/{0}", sFileName)) return String.Format("~/images/products/{0}", sFileName); else return "";
2
7148
by: DesCF | last post by:
I have a textbox and a combobox on a toolstrip. The user enters either an ID in the textbox or selects a name from the combobox. When the user selects a name from the combobox the textbox is filled in automatically by setting its .Text property equal to the .SelectedValue of the combobox. When the user enters an ID in the textbox the combobox's .SelectedValue is set to the .Text value in the ID textbox. All works fine but it is ...
0
8506
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7482
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6261
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5725
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4251
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2847
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2098
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
1843
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.