473,382 Members | 1,717 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,382 software developers and data experts.

QueryString keys

I have a question about determining if one QueryString keys exists. The idea is, if this key exists, than its presence is enough to indicate that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that client exists, so its value is true. In the code behind, I can tell that client exists using Request.QueryString.Keys.Count, which equals 1. QueryString["client"] is null, QueryString.Keys[0] is null, QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no value assigned to it. Any ideas?

Thanks,

Alex
Nov 18 '05 #1
12 5267
Private Function KeyInQuery(ByVal Key As String) As Boolean
Dim keyName As String
Dim val As String

For i As Integer = 0 To Request.QueryString.Count - 1
val = Request.QueryString.Item(i)

If Not val Is Nothing AndAlso val.ToLower() = Key.ToLower()
Return True
End If
Next

Return False
End Function

Try the above function :)

Mythran
"Alex" <al**@nospam.net> wrote in message
news:u0**************@TK2MSFTNGP10.phx.gbl...
I have a question about determining if one QueryString keys exists. The idea
is, if this key exists, than its presence is enough to indicate that its value is
true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that
client exists, so its value is true. In the code behind, I can tell that client
exists using Request.QueryString.Keys.Count, which equals 1.
QueryString["client"] is null, QueryString.Keys[0] is null,
QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no
value assigned to it. Any ideas?

Thanks,

Alex

Nov 18 '05 #2
I'm not sure I understand what the dilema is. If you can tell from Keys.Count
= 1 that the querystring has atleast one key and you can reference
QueryString["Client"] and determine if it is null or not then what is the
problem?

Besides, what good is a QueryString key with no value?

I think somehow your approach to produce a solution is flawed. Perhaps, more
information about what it is you are actually trying to accomplish? A little
more of a bigger picture?

-Demetri

"Alex" wrote:
I have a question about determining if one QueryString keys exists. The idea is, if this key exists, than its presence is enough to indicate that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that client exists, so its value is true. In the code behind, I can tell that client exists using Request.QueryString.Keys.Count, which equals 1. QueryString["client"] is null, QueryString.Keys[0] is null, QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no value assigned to it. Any ideas?

Thanks,

Alex

Nov 18 '05 #3
> Besides, what good is a QueryString key with no value?

I think he said he wants to use the key as a boolean flag. I've ran into
this myself before. Seems silly to pass a qs like client=true or
client=false, or client=1 and client=0, etc. When just passing client by
itself could represent "true" and no qs could represent "false".

my .02
Greg
"Demetri" <De*****@discussions.microsoft.com> wrote in message
news:61**********************************@microsof t.com...
I'm not sure I understand what the dilema is. If you can tell from
Keys.Count
= 1 that the querystring has atleast one key and you can reference
QueryString["Client"] and determine if it is null or not then what is the
problem?

Besides, what good is a QueryString key with no value?

I think somehow your approach to produce a solution is flawed. Perhaps,
more
information about what it is you are actually trying to accomplish? A
little
more of a bigger picture?

-Demetri

"Alex" wrote:
I have a question about determining if one QueryString keys exists. The
idea is, if this key exists, than its presence is enough to indicate that
its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me
that client exists, so its value is true. In the code behind, I can tell
that client exists using Request.QueryString.Keys.Count, which equals 1.
QueryString["client"] is null, QueryString.Keys[0] is null,
QueryString.Keys["client"] is null, Request.QueryStingText = "client",
ect.

I cannot seem to find a way to determine if a QuerySting exists when it
has no value assigned to it. Any ideas?

Thanks,

Alex

Nov 18 '05 #4
Won't

if IsNull(Request.QueryString("Client")) then
Return False
end if

Work?
"Mythran" wrote:
Private Function KeyInQuery(ByVal Key As String) As Boolean
Dim keyName As String
Dim val As String

For i As Integer = 0 To Request.QueryString.Count - 1
val = Request.QueryString.Item(i)

If Not val Is Nothing AndAlso val.ToLower() = Key.ToLower()
Return True
End If
Next

Return False
End Function

Try the above function :)

Mythran
"Alex" <al**@nospam.net> wrote in message
news:u0**************@TK2MSFTNGP10.phx.gbl...
I have a question about determining if one QueryString keys exists. The idea
is, if this key exists, than its presence is enough to indicate that its value is
true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that
client exists, so its value is true. In the code behind, I can tell that client
exists using Request.QueryString.Keys.Count, which equals 1.
QueryString["client"] is null, QueryString.Keys[0] is null,
QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no
value assigned to it. Any ideas?

Thanks,

Alex

Nov 18 '05 #5
Greg,

That is exactly what my aim is. Thanks for your input.

Akex

--
Alex Mueller
"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Besides, what good is a QueryString key with no value?


I think he said he wants to use the key as a boolean flag. I've ran into
this myself before. Seems silly to pass a qs like client=true or
client=false, or client=1 and client=0, etc. When just passing client by
itself could represent "true" and no qs could represent "false".

my .02
Greg
"Demetri" <De*****@discussions.microsoft.com> wrote in message
news:61**********************************@microsof t.com...
I'm not sure I understand what the dilema is. If you can tell from
Keys.Count
= 1 that the querystring has atleast one key and you can reference
QueryString["Client"] and determine if it is null or not then what is the problem?

Besides, what good is a QueryString key with no value?

I think somehow your approach to produce a solution is flawed. Perhaps,
more
information about what it is you are actually trying to accomplish? A
little
more of a bigger picture?

-Demetri

"Alex" wrote:
I have a question about determining if one QueryString keys exists. The
idea is, if this key exists, than its presence is enough to indicate that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me
that client exists, so its value is true. In the code behind, I can tell that client exists using Request.QueryString.Keys.Count, which equals 1. QueryString["client"] is null, QueryString.Keys[0] is null,
QueryString.Keys["client"] is null, Request.QueryStingText = "client",
ect.

I cannot seem to find a way to determine if a QuerySting exists when it
has no value assigned to it. Any ideas?

Thanks,

Alex


Nov 18 '05 #6
Ok, just for this scenario, the only QueryString key on the url is client, as in www...com/main.aspx?client. QueryString["client"] will return null. QueryString.Keys.Count will return 1. I have no way of telling that the QS client is present b/c it does not have a value assigned to it. I could write a function to search parts of the url, but I wanted to see if any answers would surface first.

I do not have a QueryString.Item in C#. I do have other name value collections, but none of them work for me as I reported in the original post. Any more ideas?

Thanks

Alex
"Mythran" <ki********@hotmail.com> wrote in message news:OM**************@TK2MSFTNGP10.phx.gbl...
Private Function KeyInQuery(ByVal Key As String) As Boolean
Dim keyName As String
Dim val As String

For i As Integer = 0 To Request.QueryString.Count - 1
val = Request.QueryString.Item(i)

If Not val Is Nothing AndAlso val.ToLower() = Key.ToLower()
Return True
End If
Next

Return False
End Function

Try the above function :)

Mythran
"Alex" <al**@nospam.net> wrote in message news:u0**************@TK2MSFTNGP10.phx.gbl...
I have a question about determining if one QueryString keys exists. The idea is, if this key exists, than its presence is enough to indicate that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that client exists, so its value is true. In the code behind, I can tell that client exists using Request.QueryString.Keys.Count, which equals 1. QueryString["client"] is null, QueryString.Keys[0] is null, QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no value assigned to it. Any ideas?

Thanks,

Alex
Nov 18 '05 #7
Request.QueryString.ToString() will return "Client"

Perhaps, you can split the querystring into a string array variable and do a
foreach on the string array and test for the string "Client" to see if it
exist.

-Demetri

"Alex" wrote:
Greg,

That is exactly what my aim is. Thanks for your input.

Akex

--
Alex Mueller
"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Besides, what good is a QueryString key with no value?


I think he said he wants to use the key as a boolean flag. I've ran into
this myself before. Seems silly to pass a qs like client=true or
client=false, or client=1 and client=0, etc. When just passing client by
itself could represent "true" and no qs could represent "false".

my .02
Greg
"Demetri" <De*****@discussions.microsoft.com> wrote in message
news:61**********************************@microsof t.com...
I'm not sure I understand what the dilema is. If you can tell from
Keys.Count
= 1 that the querystring has atleast one key and you can reference
QueryString["Client"] and determine if it is null or not then what is the problem?

Besides, what good is a QueryString key with no value?

I think somehow your approach to produce a solution is flawed. Perhaps,
more
information about what it is you are actually trying to accomplish? A
little
more of a bigger picture?

-Demetri

"Alex" wrote:

> I have a question about determining if one QueryString keys exists. The
> idea is, if this key exists, than its presence is enough to indicate that> its value is true. For example ...
>
> www.something.com/main.aspx?client
>
> Client is the QueryString, but no value is given. This would mean to me
> that client exists, so its value is true. In the code behind, I can tell> that client exists using Request.QueryString.Keys.Count, which equals 1.> QueryString["client"] is null, QueryString.Keys[0] is null,
> QueryString.Keys["client"] is null, Request.QueryStingText = "client",
> ect.
>
> I cannot seem to find a way to determine if a QuerySting exists when it
> has no value assigned to it. Any ideas?
>
> Thanks,
>
> Alex



Nov 18 '05 #8
QueryString("client") does indeed return a value of Nothing (in VB), so that won't help you. But you can search to see if the key exists in the collection...

This should work. BTW, it is essential the same as Mythran posted previously.

Dim found As Boolean = False
For i As Integer = 0 To Request.QueryString.Count - 1
If Request.QueryString(i).ToLower = "client" Then
found = True
Exit For
End If
Next

Greg

"Alex" <al**@nospam.net> wrote in message news:uQ**************@TK2MSFTNGP12.phx.gbl...
Ok, just for this scenario, the only QueryString key on the url is client, as in www...com/main.aspx?client. QueryString["client"] will return null. QueryString.Keys.Count will return 1. I have no way of telling that the QS client is present b/c it does not have a value assigned to it. I could write a function to search parts of the url, but I wanted to see if any answers would surface first.

I do not have a QueryString.Item in C#. I do have other name value collections, but none of them work for me as I reported in the original post. Any more ideas?

Thanks

Alex
"Mythran" <ki********@hotmail.com> wrote in message news:OM**************@TK2MSFTNGP10.phx.gbl...
Private Function KeyInQuery(ByVal Key As String) As Boolean
Dim keyName As String
Dim val As String

For i As Integer = 0 To Request.QueryString.Count - 1
val = Request.QueryString.Item(i)

If Not val Is Nothing AndAlso val.ToLower() = Key.ToLower()
Return True
End If
Next

Return False
End Function

Try the above function :)

Mythran
"Alex" <al**@nospam.net> wrote in message news:u0**************@TK2MSFTNGP10.phx.gbl...
I have a question about determining if one QueryString keys exists. The idea is, if this key exists, than its presence is enough to indicate that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that client exists, so its value is true. In the code behind, I can tell that client exists using Request.QueryString.Keys.Count, which equals 1. QueryString["client"] is null, QueryString.Keys[0] is null, QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no value assigned to it. Any ideas?

Thanks,

Alex
Nov 18 '05 #9
the problem you have is the query string is not well formed, the "=" is required by the w3c standard for it to be a valid url. but all is not lost, try

Page.Request.ServerVariables["QUERY_STRING"]

this will return the raw querystring

-- bruce (sqlwork.com)
"Alex" <al**@nospam.net> wrote in message news:u0**************@TK2MSFTNGP10.phx.gbl...
I have a question about determining if one QueryString keys exists. The idea is, if this key exists, than its presence is enough to indicate that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that client exists, so its value is true. In the code behind, I can tell that client exists using Request.QueryString.Keys.Count, which equals 1. QueryString["client"] is null, QueryString.Keys[0] is null, QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no value assigned to it. Any ideas?

Thanks,

Alex
Nov 18 '05 #10
How could you not have the QueryString.Item property??? It's the same object
collection in VB.Net as it is in C#....anywho, what my routine does is looks for
the VALUE named "client" and not the KEY. That is why QueryString(Key) gives you
a value of Nothing. There is no KEY called "client", but there is a value called
"client" that is not associated with a key (the key itself is "" or Nothing).

Try QueryString[i] instead of QueryString.Item. Maybe that will work :)

Mythran

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:ui*************@TK2MSFTNGP09.phx.gbl...
QueryString("client") does indeed return a value of Nothing (in VB), so that
won't help you. But you can search to see if the key exists in the collection...

This should work. BTW, it is essential the same as Mythran posted previously.

Dim found As Boolean = False
For i As Integer = 0 To Request.QueryString.Count - 1
If Request.QueryString(i).ToLower = "client" Then
found = True
Exit For
End If
Next

Greg

"Alex" <al**@nospam.net> wrote in message
news:uQ**************@TK2MSFTNGP12.phx.gbl...
Ok, just for this scenario, the only QueryString key on the url is client, as
in www...com/main.aspx?client. QueryString["client"] will return null.
QueryString.Keys.Count will return 1. I have no way of telling that the QS client
is present b/c it does not have a value assigned to it. I could write a function
to search parts of the url, but I wanted to see if any answers would surface
first.

I do not have a QueryString.Item in C#. I do have other name value
collections, but none of them work for me as I reported in the original post. Any
more ideas?

Thanks

Alex
"Mythran" <ki********@hotmail.com> wrote in message
news:OM**************@TK2MSFTNGP10.phx.gbl...
Private Function KeyInQuery(ByVal Key As String) As Boolean
Dim keyName As String
Dim val As String

For i As Integer = 0 To Request.QueryString.Count - 1
val = Request.QueryString.Item(i)

If Not val Is Nothing AndAlso val.ToLower() = Key.ToLower()
Return True
End If
Next

Return False
End Function

Try the above function :)

Mythran
"Alex" <al**@nospam.net> wrote in message
news:u0**************@TK2MSFTNGP10.phx.gbl...
I have a question about determining if one QueryString keys exists. The
idea is, if this key exists, than its presence is enough to indicate that its
value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me
that client exists, so its value is true. In the code behind, I can tell that
client exists using Request.QueryString.Keys.Count, which equals 1.
QueryString["client"] is null, QueryString.Keys[0] is null,
QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it
has no value assigned to it. Any ideas?

Thanks,

Alex

Nov 18 '05 #11
I am not sure what he meant by not having an Item property either.

Our code does the same thing.

Request.Querystring(i) and Request.Querystring.Item(i) are equivalent. (default indexer and all that)

I think Bruce is probably correct about this not following w3c standards and probably should be avoided altogther.

Greg

"Mythran" <ki********@hotmail.com> wrote in message news:eN**************@TK2MSFTNGP15.phx.gbl...
How could you not have the QueryString.Item property??? It's the same object collection in VB.Net as it is in C#....anywho, what my routine does is looks for the VALUE named "client" and not the KEY. That is why QueryString(Key) gives you a value of Nothing. There is no KEY called "client", but there is a value called "client" that is not associated with a key (the key itself is "" or Nothing).

Try QueryString[i] instead of QueryString.Item. Maybe that will work :)

Mythran

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message news:ui*************@TK2MSFTNGP09.phx.gbl...
QueryString("client") does indeed return a value of Nothing (in VB), so that won't help you. But you can search to see if the key exists in the collection...

This should work. BTW, it is essential the same as Mythran posted previously.

Dim found As Boolean = False
For i As Integer = 0 To Request.QueryString.Count - 1
If Request.QueryString(i).ToLower = "client" Then
found = True
Exit For
End If
Next

Greg

"Alex" <al**@nospam.net> wrote in message news:uQ**************@TK2MSFTNGP12.phx.gbl...
Ok, just for this scenario, the only QueryString key on the url is client, as in www...com/main.aspx?client. QueryString["client"] will return null. QueryString.Keys.Count will return 1. I have no way of telling that the QS client is present b/c it does not have a value assigned to it. I could write a function to search parts of the url, but I wanted to see if any answers would surface first.

I do not have a QueryString.Item in C#. I do have other name value collections, but none of them work for me as I reported in the original post. Any more ideas?

Thanks

Alex
"Mythran" <ki********@hotmail.com> wrote in message news:OM**************@TK2MSFTNGP10.phx.gbl...
Private Function KeyInQuery(ByVal Key As String) As Boolean
Dim keyName As String
Dim val As String

For i As Integer = 0 To Request.QueryString.Count - 1
val = Request.QueryString.Item(i)

If Not val Is Nothing AndAlso val.ToLower() = Key.ToLower()
Return True
End If
Next

Return False
End Function

Try the above function :)

Mythran
"Alex" <al**@nospam.net> wrote in message news:u0**************@TK2MSFTNGP10.phx.gbl...
I have a question about determining if one QueryString keys exists. The idea is, if this key exists, than its presence is enough to indicate that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me that client exists, so its value is true. In the code behind, I can tell that client exists using Request.QueryString.Keys.Count, which equals 1. QueryString["client"] is null, QueryString.Keys[0] is null, QueryString.Keys["client"] is null, Request.QueryStingText = "client", ect.

I cannot seem to find a way to determine if a QuerySting exists when it has no value assigned to it. Any ideas?

Thanks,

Alex
Nov 18 '05 #12
I have a similar issue two weeks after you did. I use a bit of code
that loops through a querystring, removes the keyvalue pair I no
longer want in there and then redirects the user to the same page with
the newly formed querystring. Trouble is that the code would choke
when it hit a GetKey value that was null. And the reason it was null?
Because there was no = sign after it. We would only find users getting
this error when coming in from email clients that were cutting off the
URL with the correct querystring. So its no big deal but it was
annoying.

Lets use your example of "count". Logically programmers expect "count"
to be a key. People suggest that the proper w3c compliant way to fix
your problem would be "count=1" or "count=true" or heck even "count=".
Truth is though you are not using count as a key (even though most
programmer expect it to be one) we are using it just like we'd use a
value.

So whos to blame here? .Net for handling this instance as a value and
giving us a null GetKey result? Or developers for thinking its a key
but using it as a value? It seems a bit perplexing and the programming
purist in me wants to punch someone for it I just don't know who.

The solution in my case was to explicitly check for a null GetKey
value and then handle it accordingly. I programmed it in but I did so
reluctantly and under protest, cursing .net while doing so.

Larry.
"Alex" <al**@nospam.net> wrote in message news:<u0**************@TK2MSFTNGP10.phx.gbl>...
I have a question about determining if one QueryString keys exists. The
idea is, if this key exists, than its presence is enough to indicate
that its value is true. For example ...

www.something.com/main.aspx?client

Client is the QueryString, but no value is given. This would mean to me
that client exists, so its value is true. In the code behind, I can tell
that client exists using Request.QueryString.Keys.Count, which equals 1.
QueryString["client"] is null, QueryString.Keys[0] is null,
QueryString.Keys["client"] is null, Request.QueryStingText = "client",
ect.

I cannot seem to find a way to determine if a QuerySting exists when it
has no value assigned to it. Any ideas?

Thanks,

Alex
--

Nov 18 '05 #13

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

Similar topics

3
by: spradl | last post by:
Anyone have a VB function or know how to retrieve original querystring values after they have been decryted and lie within a string? For example: Say I have the querystring...
1
by: lion | last post by:
my Problem: a query string passed into a html page doesn't display correctly on a mac I am just using html and javascript (no ASP, PHP or server side scripting) This is the query string:...
2
by: Hazzard | last post by:
I am trying to figure out how to add an additional value to a querystring collection so that when I click on a datagrid cell, there will be a key to distinguish it from another column's...
9
by: Doug | last post by:
I need to do the following... FOR myitem IN Request.Querystring 'get the key 'get the value NEXT What do I DIM myitem as? DictionaryEntry doesn't work...or do I have to loop through it by...
5
by: VB Programmer | last post by:
I have an ASPX page that is used for content. I have a master page which sticks the page in an IFrame. Question: From the content/ASPX page, I can't seem to reference request.querystring. Any...
5
by: .NET Developer | last post by:
Ok, this is probably simple but it's been driving me nuts. If I have a URL like this: http://www.mysite.com/MyPage.aspx?MyKey What code would I write to get that value "MyKey" out of the...
10
by: VB Programmer | last post by:
If I have a url like this: www.somesite.com/mypage.aspx?myvalue1=hello&myvalue2=goodbye, in VB.NET, how do I get the "mypage.aspx?myvalue1=hello&myvalue2=goodbye" portion? Thanks!
3
by: Rob | last post by:
Hi all, I've encrypted an entire querystring, thus the keys and values, at the moment I do only have one key and one value in it, so I could write something specific for that key, but I know as...
12
by: Peter | last post by:
Hi if I have a url/query like "localhost?a&b&c=123" then I thought I could get these parameters and values by using NameValueCollection query = HttpContext.Current.Request.QueryString; But if...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...

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.