473,404 Members | 2,137 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

Convert QueryString to regular Url

I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor
Nov 17 '05 #1
14 3833
Could you be a little more descriptive about how you are trying to get this
to work? Obviously you could do something like

response.redirect(request.queryString("category") & ".aspx")

but I have a feeling you are trying to do something a little more
complicated.

-D

"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #2
Could you be a little more descriptive about how you are trying to get this
to work? Obviously you could do something like

response.redirect(request.queryString("category") & ".aspx")

but I have a feeling you are trying to do something a little more
complicated.

-D

"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #3
You can use the request.RawURL() method to return the entire query, then use
some string functions to back out everything up to the "?".

Chip

"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #4
You can use the request.RawURL() method to return the entire query, then use
some string functions to back out everything up to the "?".

Chip

"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #5
David,

I haven't seen the article your looking for but my guess is that it involves
creating a custom 404 page which then redirects to the appropriate aspx page
(passing in all the appropriate querystring parameters). These are good but
make a bit of overhead which you want to avoid on larger sites.

Another way of doing this without all the overhead is to use an ISAPI filter
to process your incoming requests and then direct them to the correct page.
I use ISAPI rewrite on some of the sites we develop. Its been really useful
with Google indexing of the sites and page rankings. Have a look at
www.isapirewrite.com

Happy Coding!

J
"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #6
David,

I haven't seen the article your looking for but my guess is that it involves
creating a custom 404 page which then redirects to the appropriate aspx page
(passing in all the appropriate querystring parameters). These are good but
make a bit of overhead which you want to avoid on larger sites.

Another way of doing this without all the overhead is to use an ISAPI filter
to process your incoming requests and then direct them to the correct page.
I use ISAPI rewrite on some of the sites we develop. Its been really useful
with Google indexing of the sites and page rankings. Have a look at
www.isapirewrite.com

Happy Coding!

J
"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #7
Thanks for the input guys. The problem is not manipulating the
string, the problem is generating and sending the page as a response
because in my example, the page:

http://www.mywebsite.com/motherboard.aspx

doesn't actually exist but is an 'alias' for

http://www.mywebsite.com/products.as...ry=motherboard

so somehow it is using members of a namespace near or under good old

System.Web.UI.Page

perhaps the Request or Response members.

Thanks for your responses, I'll keep looking into this.

David
dt*****@harc.edu (David C. Taylor) wrote in message news:<d4**************************@posting.google. com>...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #8
Thanks for the input guys. The problem is not manipulating the
string, the problem is generating and sending the page as a response
because in my example, the page:

http://www.mywebsite.com/motherboard.aspx

doesn't actually exist but is an 'alias' for

http://www.mywebsite.com/products.as...ry=motherboard

so somehow it is using members of a namespace near or under good old

System.Web.UI.Page

perhaps the Request or Response members.

Thanks for your responses, I'll keep looking into this.

David
dt*****@harc.edu (David C. Taylor) wrote in message news:<d4**************************@posting.google. com>...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #9
Ah...

At first I was thinking you could do a redirect to a custom error page by
modifying the customErrors element of your web config, but I think you'll
have to trap it in the Application_Error event of your Global.asax file,
otherwise you can't know what the requested script name is. When an error
occurs you can do something like:

(psudo-code)

IF currentError = filenotfoundexception then
'request the server variables for the current httprequest
'grab the script name and remove the extention
'do a response.redirect to the page using the new parameter
'OR
'flush the response buffer and do a server.execute to the page.
end if

There may be a more elegant way to do this that you probably read, but that
would be my 2 cents. And FYI, It would seem to me that you are asking for
confusion by doing something like this. ;o)

-D

"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
Thanks for the input guys. The problem is not manipulating the
string, the problem is generating and sending the page as a response
because in my example, the page:

http://www.mywebsite.com/motherboard.aspx

doesn't actually exist but is an 'alias' for

http://www.mywebsite.com/products.as...ry=motherboard

so somehow it is using members of a namespace near or under good old

System.Web.UI.Page

perhaps the Request or Response members.

Thanks for your responses, I'll keep looking into this.

David
dt*****@harc.edu (David C. Taylor) wrote in message

news:<d4**************************@posting.google. com>...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #10
Ah...

At first I was thinking you could do a redirect to a custom error page by
modifying the customErrors element of your web config, but I think you'll
have to trap it in the Application_Error event of your Global.asax file,
otherwise you can't know what the requested script name is. When an error
occurs you can do something like:

(psudo-code)

IF currentError = filenotfoundexception then
'request the server variables for the current httprequest
'grab the script name and remove the extention
'do a response.redirect to the page using the new parameter
'OR
'flush the response buffer and do a server.execute to the page.
end if

There may be a more elegant way to do this that you probably read, but that
would be my 2 cents. And FYI, It would seem to me that you are asking for
confusion by doing something like this. ;o)

-D

"David C. Taylor" <dt*****@harc.edu> wrote in message
news:d4**************************@posting.google.c om...
Thanks for the input guys. The problem is not manipulating the
string, the problem is generating and sending the page as a response
because in my example, the page:

http://www.mywebsite.com/motherboard.aspx

doesn't actually exist but is an 'alias' for

http://www.mywebsite.com/products.as...ry=motherboard

so somehow it is using members of a namespace near or under good old

System.Web.UI.Page

perhaps the Request or Response members.

Thanks for your responses, I'll keep looking into this.

David
dt*****@harc.edu (David C. Taylor) wrote in message

news:<d4**************************@posting.google. com>...
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor

Nov 17 '05 #11

Hi David,

As I understand, you want to type in the IE address window:
http://www.mywebsite.com/motherboard.aspx (which is not exist)
Then you want to capture this error and redirect to:
http://www.mywebsite.com/products.as...ry=motherboard

To get this done, I think you should change the error page of 404 page not
found to your customized page my404.html.
This is the content of my404.html:
<script>

DocURL = document.URL;

if (DocURL=="http://www.mywebsite.com/motherboard.aspx"){

NewDocURL ="http://www.mywebsite.com/products.aspx?category=motherboard";

window.navigate(NewDocURL);

}

</script>

To change the default of the 404 error page, you should follow bellow steps:
a. Run Internet Service Manger (If you’re using IIS 4.0, you can run it at
Start -> Programs -> Windows NT 4.0 Option Pack -> Microsoft Internet
Information Server -> Internet Service Manager)

b. Expand the Default Web Site and choose the corresponding virtual
directory vd1.
c. Right click vd1 and click Properties.

d. Click Custom Errors Tab and choose the 404 item in the list.

e. Change the Contents to point to the file my404.html

f. Click OK
Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: dt*****@harc.edu (David C. Taylor)
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Subject: Re: Convert QueryString to regular Url
| Date: 22 Oct 2003 11:46:27 -0700
| Organization: http://groups.google.com
| Lines: 42
| Message-ID: <d4**************************@posting.google.com >
| References: <d4**************************@posting.google.com >
| NNTP-Posting-Host: 208.16.173.127
| Content-Type: text/plain; charset=ISO-8859-1
| Content-Transfer-Encoding: 8bit
| X-Trace: posting.google.com 1066848388 23632 127.0.0.1 (22 Oct 2003
18:46:28 GMT)
| X-Complaints-To: gr**********@google.com
| NNTP-Posting-Date: Wed, 22 Oct 2003 18:46:28 +0000 (UTC)
| Path:
cpmsftngxa06.phx.gbl!cpmsftngxa09.phx.gbl!TK2MSFTN GP08.phx.gbl!newsfeed00.su
l.t-online.de!t-online.de!diablo.theplanet.net!news.maxwell.syr.ed u!postnews
1.google.com!not-for-mail
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:185859
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Thanks for the input guys. The problem is not manipulating the
| string, the problem is generating and sending the page as a response
| because in my example, the page:
|
| http://www.mywebsite.com/motherboard.aspx
|
| doesn't actually exist but is an 'alias' for
|
| http://www.mywebsite.com/products.as...ry=motherboard
|
| so somehow it is using members of a namespace near or under good old
|
| System.Web.UI.Page
|
| perhaps the Request or Response members.
|
| Thanks for your responses, I'll keep looking into this.
|
| David
|
|
| dt*****@harc.edu (David C. Taylor) wrote in message
news:<d4**************************@posting.google. com>...
| > I saw an article that described how to convert the query string into
| > an Url without a query string and return the page.
| >
| > For example, this request:
| >
| > http://www.mywebsite.com/products.as...ry=motherboard
| >
| > becomes something like this:
| >
| > http://www.mywebsite.com/motherboard.aspx
| >
| > I need to do that or something like it. The problem is, I cannot put
| > my hands on that article. It could have been anywhere from a dozen
| > magazines, dozens of websites, or dozens of newsletters. I really
| > wish I had bookmarked it. If anyone can point me to any resources
| > describing this technique I would be highly appreciative.
| >
| > Regards,
| >
| > David Taylor
|

Nov 17 '05 #12
David C. Taylor wrote:
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor


What you want to do is called "URL rewriting". You might want to do a
Google search on that term - there are a lot of techniques out there.

One specific article that may be of interest to you is:
http://msdn.microsoft.com/msdnmag/is...s/default.aspx

--
mikeb

Nov 17 '05 #13

Hi ,

I think the link you provide of much value, but I think there are some
limitation.
It can only handle the request already reached your application, but if
David want to do something like this:

the customer types:
http://www.mywebsite.com/motherboard.aspx (this page does not exist)

David wants it to redirect to
http://www.mywebsite.com/virtual1/vi...ual3/test.aspx

I think your web application in /virtual1/virtual2/ will not get the
request, so it can not set the Http filter for the request.
So in this situation, you need to change the 404 error page in root
direcotry to your customized page.

Anyway, I think the httpfilter way of handling the request is a more
elegant way.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| Date: Thu, 23 Oct 2003 07:58:51 -0700
| From: mikeb <ma************@mailnull.com>
| User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b)
Gecko/20030901 Thunderbird/0.2
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: Re: Convert QueryString to regular Url
| References: <d4**************************@posting.google.com >
| In-Reply-To: <d4**************************@posting.google.com >
| Content-Type: text/plain; charset=us-ascii; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <ee**************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: 12.8.192.60
| Lines: 1
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:186068
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| David C. Taylor wrote:
| > I saw an article that described how to convert the query string into
| > an Url without a query string and return the page.
| >
| > For example, this request:
| >
| > http://www.mywebsite.com/products.as...ry=motherboard
| >
| > becomes something like this:
| >
| > http://www.mywebsite.com/motherboard.aspx
| >
| > I need to do that or something like it. The problem is, I cannot put
| > my hands on that article. It could have been anywhere from a dozen
| > magazines, dozens of websites, or dozens of newsletters. I really
| > wish I had bookmarked it. If anyone can point me to any resources
| > describing this technique I would be highly appreciative.
| >
| > Regards,
| >
| > David Taylor
|
| What you want to do is called "URL rewriting". You might want to do a
| Google search on that term - there are a lot of techniques out there.
|
| One specific article that may be of interest to you is:
|
|
| http://msdn.microsoft.com/msdnmag/is...s/default.aspx
|
| --
| mikeb
|
|

Nov 17 '05 #14
Thanks to mikeb for providing an answer to my inquiry. I was
searching using keywords like QueryString reformat, redirect, Url,
alias, HttpRequest, etc., and not getting any results. When using the
correct term, "url rewriting" in quotes as a search query, that does
the trick.

McD mentioned that I might be creating extra confusion by tring to do
this, and that is a valid point to the developer. However, there are
at least two reasons to want to do this which are, I believe, 'worth
it' if a robust solution can be found.

First, which url is much more user friendly (remember MOST people on
the web are not developers or even slightly tech savy)?

http://www.mydomain.com/results.aspx...ct=easterbunny

or

http://www.mydomain.com/easterbunny.aspx

I think the latter url is more user friendly, easier to transcribe and
bookmark.

Secondly, we have heard that most/all (?) search engines will not
crawl urls with a query string and thus we want to eliminate those
urls as much as reasonable.

Having said that, the link to the MSDN article provided by mikeb

http://msdn.microsoft.com/msdnmag/is...s/default.aspx

is very informative but neither of the solutions presented fit exactly
what I was looking for. Well worth the read though.

Using "url rewriting" google did turn up the original article I was
looking for which was indeed what I needed to solve my problem. The
article at Code Project is "URL Rewriting with ASP.NET" by Richard
Birkby.

http://www.codeproject.com/aspnet/URLRewriter.asp

I had searched The Code Project but had the wrong keywords.The
solution is nice and uses HttpContext.RewritePath to change the Url.

Thanks all, David Taylor
mikeb <ma************@mailnull.com> wrote in message news:<ee**************@TK2MSFTNGP09.phx.gbl>...
David C. Taylor wrote:
I saw an article that described how to convert the query string into
an Url without a query string and return the page.

For example, this request:

http://www.mywebsite.com/products.as...ry=motherboard

becomes something like this:

http://www.mywebsite.com/motherboard.aspx

I need to do that or something like it. The problem is, I cannot put
my hands on that article. It could have been anywhere from a dozen
magazines, dozens of websites, or dozens of newsletters. I really
wish I had bookmarked it. If anyone can point me to any resources
describing this technique I would be highly appreciative.

Regards,

David Taylor


What you want to do is called "URL rewriting". You might want to do a
Google search on that term - there are a lot of techniques out there.

One specific article that may be of interest to you is:
http://msdn.microsoft.com/msdnmag/is...s/default.aspx

Nov 17 '05 #15

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

Similar topics

4
by: Jason Chan | last post by:
i want to covert a querystring to float number in asp. what function should i use? i know cint() can convert string to int but how about float?
5
by: Carl Gilbert | last post by:
Hi I have some ASP code that I want to run from CD within a VB.NET windows application with a web browser control. However, to get the ASP pages to run without a server is proving quite...
4
by: aevans1108 | last post by:
expanding this message to microsoft.public.dotnet.xml Greetings Please direct me to the right group if this is an inappropriate place to post this question. Thanks. I want to format a...
0
by: David C. Taylor | last post by:
I saw an article that described how to convert the query string into an Url without a query string and return the page. For example, this request: ...
7
by: Scott Schluer | last post by:
Is there a way to use the Image class to convert a color photo (GIF or JPEG) to a B&W photo? Thanks, Scott
2
by: Chris | last post by:
Hi, Can someone convert this to VB.NET Please. I am trying but for some reason it doesn't work. if (null != Request.QueryString) { secondsToWait = Request.QueryString; if...
4
by: sylvain | last post by:
I create an encrypted string and when this string is pass into a querystring to an ASP.Net page I have an error message that said that this querystring is potentialy dangerous. Here is an...
2
by: Marine88 | last post by:
I am trying to convert a string value in a querystring to a boolean value in a if statement to determine if the value in the querystring returned is true then run whats in the If statement. Tried...
14
by: Joe | last post by:
this file is drawn in VB.NET and input output goes by XmlSerializer. Therefore, simple output file looks like: <?xml version="1.0" encoding="utf-8"?> <DrawablePicture...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.