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

GridView - ObjectDataSource NOT retrieving records

Hi ALL,
I wonder if anyone has been using n-tier to bind to a GridView control by
using the ObjectDataSource. This is our first OOP web application, and we
have no tables. Right now we are simply working with objects in memory.

So, it appears as though Microsoft requires that our datamapper classes
reside inside a folder called "App_Code", and NO WHERE ELSE.

So, has anyone successfully been able to place their datamappers in a
location other than "App_Code", and actually retrieve records from a
datamapper class?

TIA, Randy
Jan 8 '07 #1
5 2612
Hi Phillip,
I rally appreciate your help. I like your sample "Dropdownlist within a
GridView", but I do have a few questions about your ObjectDataSource.

Here is the code I'm interested in:
<asp:ObjectDataSource ID="odsProducts" runat="server"
SelectMethod="ProductByID"
TypeName="WEBSWAPP_BLL.Demos"
DataObjectTypeName="WEBSWAPP_BLL.clsProduct">
<SelectParameters>
<asp:ControlParameter
ControlID="ddlProducts" Name="productID" PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
1) I presume that "WEBSWAPP_BLL" is a DLL, right? Where is it located in
your folder structure?
2) I see that you are using "TypeName". I presume that "Demos" is the class
inside your "WEBSWAPP_BLL" DLL, right?
3) Did you have to add any specific entries into the web.config file to get
it to work?
4) I haven't seen your "default.aspx.cs" code, but do you have this
reference: "using WEBSWAPP_BLL;" (C#)?

Many thanks, Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:DA**********************************@microsof t.com...
Hello Randy,

You can compile your domain layer into a separate assembly and add a
reference to it in your project (all the demos on my website are build
using
this strategy) or you can also download the "Visual Studio 2005 Web
Application Projects" to build applications in the same way as you used to
VS2003 where you do not have to put your datamappers in the App_Code
folder
http://msdn2.microsoft.com/en-us/asp.net/aa336618.aspx

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:
>Hi ALL,
I wonder if anyone has been using n-tier to bind to a GridView control by
using the ObjectDataSource. This is our first OOP web application, and
we
have no tables. Right now we are simply working with objects in memory.

So, it appears as though Microsoft requires that our datamapper classes
reside inside a folder called "App_Code", and NO WHERE ELSE.

So, has anyone successfully been able to place their datamappers in a
location other than "App_Code", and actually retrieve records from a
datamapper class?

TIA, Randy

Jan 9 '07 #2
Hi,
Well, I've changed my ObjectDataSource to match your examples, but I am
still not getting any data. I wonder if you can post the code for
"default.aspx.cs" (within "Dropdownlist within a GridView". I'm
particularly interested in seeing how you go about doing the "databind",
which may be my problem.
Many, many thanks!!! Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:34**********************************@microsof t.com...
Hello Randy,

For the purpose of my website where the demos do not have real business
logic (it is just a presentation logic built on top of a dataset),
WEBSWAPP_BLL is just a domain layer with a dataset.

The DAL in that demos website is a VS generated dataset named Samples.xsd
(which is not listed on the website). Its structure (a typed dataset of a
collection of datatables) is not necessary to understanding the demos that
I
placed to demonstrate the ASP.NET server controls features. I load it
into
the application cache to allow the users to write to the dataset in cache
but
then I do not persist their entries on the data store.

The class named WEBSWAPP_BLL.Demos is the compiled into a separate
assembly
from another project (class library), which is not within the folders
structure of the web application. I only add the compiled assembly (dll
file) to the bin folder on the web application (by adding a reference to
the
class library project into my web application project).

So to answer to your questions:
1- A separate class library project compiled into a dll that is copied to
the bin folder of the website
2- Yes
3- No.
4- No.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:
>Hi Phillip,
I rally appreciate your help. I like your sample "Dropdownlist within a
GridView", but I do have a few questions about your ObjectDataSource.

Here is the code I'm interested in:
<asp:ObjectDataSource ID="odsProducts" runat="server"
SelectMethod="ProductByID"
TypeName="WEBSWAPP_BLL.Demos"
DataObjectTypeName="WEBSWAPP_BLL.clsProduct">
<SelectParameters>
<asp:ControlParameter
ControlID="ddlProducts" Name="productID" PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
1) I presume that "WEBSWAPP_BLL" is a DLL, right? Where is it located in
your folder structure?
2) I see that you are using "TypeName". I presume that "Demos" is the
class
inside your "WEBSWAPP_BLL" DLL, right?
3) Did you have to add any specific entries into the web.config file to
get
it to work?
4) I haven't seen your "default.aspx.cs" code, but do you have this
reference: "using WEBSWAPP_BLL;" (C#)?

Many thanks, Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:DA**********************************@microso ft.com...
Hello Randy,

You can compile your domain layer into a separate assembly and add a
reference to it in your project (all the demos on my website are build
using
this strategy) or you can also download the "Visual Studio 2005 Web
Application Projects" to build applications in the same way as you used
to
VS2003 where you do not have to put your datamappers in the App_Code
folder
http://msdn2.microsoft.com/en-us/asp.net/aa336618.aspx

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:

Hi ALL,
I wonder if anyone has been using n-tier to bind to a GridView control
by
using the ObjectDataSource. This is our first OOP web application,
and
we
have no tables. Right now we are simply working with objects in
memory.

So, it appears as though Microsoft requires that our datamapper
classes
reside inside a folder called "App_Code", and NO WHERE ELSE.

So, has anyone successfully been able to place their datamappers in a
location other than "App_Code", and actually retrieve records from a
datamapper class?

TIA, Randy



Jan 10 '07 #3
So,
Do I understand that you didn't need to do any sort of "databind"? I had
this code in my Page_Load event:
gvMaterialRates.DataSource = ObjectDataSource1;

gvMaterialRates.DataBind();

I've tried it several different ways:
1) As above
2) With the "DataSource" line commented out, and the other line active.
3) With the "DataBind" line commented out, and the other line active.
4) With both lines commented out.

I'll try the debug route and see what happens.

Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:17**********************************@microsof t.com...
Have you tried stepping in debug mode with break points within the BLL &
DAL
to see if the web interface is calling the methods of your object library?
It might be an issue of the structure of your namespaces. In my demos I
put
the fully qualified name of the class starting from the root namespace,
e.g.
WEBSWAPP_BLL.Demos is the fully qualified path.

In your case it might be something like MyCompany.Modules.App1.className.
Make sure you put the fully qualified path in the values for TypeName and
DataObjectTypeName properties of the ObjectDataSource. Then set break
points
within those methods to debug in VS.

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:
>Hi,
Well, I've changed my ObjectDataSource to match your examples, but I am
still not getting any data. I wonder if you can post the code for
"default.aspx.cs" (within "Dropdownlist within a GridView". I'm
particularly interested in seeing how you go about doing the "databind",
which may be my problem.
Many, many thanks!!! Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:34**********************************@microso ft.com...
Hello Randy,

For the purpose of my website where the demos do not have real business
logic (it is just a presentation logic built on top of a dataset),
WEBSWAPP_BLL is just a domain layer with a dataset.

The DAL in that demos website is a VS generated dataset named
Samples.xsd
(which is not listed on the website). Its structure (a typed dataset
of a
collection of datatables) is not necessary to understanding the demos
that
I
placed to demonstrate the ASP.NET server controls features. I load it
into
the application cache to allow the users to write to the dataset in
cache
but
then I do not persist their entries on the data store.

The class named WEBSWAPP_BLL.Demos is the compiled into a separate
assembly
from another project (class library), which is not within the folders
structure of the web application. I only add the compiled assembly
(dll
file) to the bin folder on the web application (by adding a reference
to
the
class library project into my web application project).

So to answer to your questions:
1- A separate class library project compiled into a dll that is copied
to
the bin folder of the website
2- Yes
3- No.
4- No.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:

Hi Phillip,
I rally appreciate your help. I like your sample "Dropdownlist within
a
GridView", but I do have a few questions about your ObjectDataSource.

Here is the code I'm interested in:
<asp:ObjectDataSource ID="odsProducts" runat="server"
SelectMethod="ProductByID"
TypeName="WEBSWAPP_BLL.Demos"
DataObjectTypeName="WEBSWAPP_BLL.clsProduct">
<SelectParameters>
<asp:ControlParameter
ControlID="ddlProducts" Name="productID" PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
1) I presume that "WEBSWAPP_BLL" is a DLL, right? Where is it located
in
your folder structure?
2) I see that you are using "TypeName". I presume that "Demos" is the
class
inside your "WEBSWAPP_BLL" DLL, right?
3) Did you have to add any specific entries into the web.config file
to
get
it to work?
4) I haven't seen your "default.aspx.cs" code, but do you have this
reference: "using WEBSWAPP_BLL;" (C#)?

Many thanks, Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:DA**********************************@microso ft.com...
Hello Randy,

You can compile your domain layer into a separate assembly and add a
reference to it in your project (all the demos on my website are
build
using
this strategy) or you can also download the "Visual Studio 2005 Web
Application Projects" to build applications in the same way as you
used
to
VS2003 where you do not have to put your datamappers in the App_Code
folder
http://msdn2.microsoft.com/en-us/asp.net/aa336618.aspx

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:

Hi ALL,
I wonder if anyone has been using n-tier to bind to a GridView
control
by
using the ObjectDataSource. This is our first OOP web application,
and
we
have no tables. Right now we are simply working with objects in
memory.

So, it appears as though Microsoft requires that our datamapper
classes
reside inside a folder called "App_Code", and NO WHERE ELSE.

So, has anyone successfully been able to place their datamappers in
a
location other than "App_Code", and actually retrieve records from
a
datamapper class?

TIA, Randy




Jan 10 '07 #4
UPDATE:
I debugged the "FetchAllRates" and found that it was showing a count of ZERO
records, even though I have 3 rows in the object. It then dawned on me that
our consultant switched us over to ApplicationManager.cs. This piece of
code actually returns a count of 3, whereas my direct code retrieves ZERO.
lblRows.Text =
ApplicationManager.MaterialRateDM.FetchAllRates(). Count.ToString();
//returns 3 rows

Here's the code I was using for my ObjectDataSource:

<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"

SelectMethod="FetchAllRates" TypeName="GWO.MaterialRateDataMapper"
EnablePaging="false">

</asp:ObjectDataSource>

If I replace the "GWO.MaterialRateDataMapper" with
"ApplicationManager.MaterialRateDM", I get an error indicating that
"FetchAllRates" could not be found.
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:CC**********************************@microsof t.com...
That's correct. The ObjectDataSource encapsulates the logic for
retrieving
the data and the GridView uses the value of the DataSourceID property to
locate the ObjectDataSource control within the page's controls hierarchy
and
automatically binds the data.

You can still use the programmatic approach if you wish, in which case you
would not need to place an ObjectDataSource on the page.

You can read further about the GridView:
http://msdn2.microsoft.com/en-gb/lib....gridview.aspx

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:
>So,
Do I understand that you didn't need to do any sort of "databind"? I had
this code in my Page_Load event:
gvMaterialRates.DataSource = ObjectDataSource1;

gvMaterialRates.DataBind();

I've tried it several different ways:
1) As above
2) With the "DataSource" line commented out, and the other line active.
3) With the "DataBind" line commented out, and the other line active.
4) With both lines commented out.

I'll try the debug route and see what happens.

Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:17**********************************@microso ft.com...
Have you tried stepping in debug mode with break points within the BLL
&
DAL
to see if the web interface is calling the methods of your object
library?
It might be an issue of the structure of your namespaces. In my demos I
put
the fully qualified name of the class starting from the root namespace,
e.g.
WEBSWAPP_BLL.Demos is the fully qualified path.

In your case it might be something like
MyCompany.Modules.App1.className.
Make sure you put the fully qualified path in the values for TypeName
and
DataObjectTypeName properties of the ObjectDataSource. Then set break
points
within those methods to debug in VS.

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:

Hi,
Well, I've changed my ObjectDataSource to match your examples, but I
am
still not getting any data. I wonder if you can post the code for
"default.aspx.cs" (within "Dropdownlist within a GridView". I'm
particularly interested in seeing how you go about doing the
"databind",
which may be my problem.
Many, many thanks!!! Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:34**********************************@microso ft.com...
Hello Randy,

For the purpose of my website where the demos do not have real
business
logic (it is just a presentation logic built on top of a dataset),
WEBSWAPP_BLL is just a domain layer with a dataset.

The DAL in that demos website is a VS generated dataset named
Samples.xsd
(which is not listed on the website). Its structure (a typed
dataset
of a
collection of datatables) is not necessary to understanding the
demos
that
I
placed to demonstrate the ASP.NET server controls features. I load
it
into
the application cache to allow the users to write to the dataset in
cache
but
then I do not persist their entries on the data store.

The class named WEBSWAPP_BLL.Demos is the compiled into a separate
assembly
from another project (class library), which is not within the
folders
structure of the web application. I only add the compiled assembly
(dll
file) to the bin folder on the web application (by adding a
reference
to
the
class library project into my web application project).

So to answer to your questions:
1- A separate class library project compiled into a dll that is
copied
to
the bin folder of the website
2- Yes
3- No.
4- No.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:

Hi Phillip,
I rally appreciate your help. I like your sample "Dropdownlist
within
a
GridView", but I do have a few questions about your
ObjectDataSource.

Here is the code I'm interested in:
<asp:ObjectDataSource ID="odsProducts" runat="server"
SelectMethod="ProductByID"
TypeName="WEBSWAPP_BLL.Demos"
DataObjectTypeName="WEBSWAPP_BLL.clsProduct">
<SelectParameters>
<asp:ControlParameter
ControlID="ddlProducts" Name="productID"
PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
1) I presume that "WEBSWAPP_BLL" is a DLL, right? Where is it
located
in
your folder structure?
2) I see that you are using "TypeName". I presume that "Demos" is
the
class
inside your "WEBSWAPP_BLL" DLL, right?
3) Did you have to add any specific entries into the web.config
file
to
get
it to work?
4) I haven't seen your "default.aspx.cs" code, but do you have this
reference: "using WEBSWAPP_BLL;" (C#)?

Many thanks, Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:DA**********************************@microso ft.com...
Hello Randy,

You can compile your domain layer into a separate assembly and
add a
reference to it in your project (all the demos on my website are
build
using
this strategy) or you can also download the "Visual Studio 2005
Web
Application Projects" to build applications in the same way as
you
used
to
VS2003 where you do not have to put your datamappers in the
App_Code
folder
http://msdn2.microsoft.com/en-us/asp.net/aa336618.aspx

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:

Hi ALL,
I wonder if anyone has been using n-tier to bind to a GridView
control
by
using the ObjectDataSource. This is our first OOP web
application,
and
we
have no tables. Right now we are simply working with objects in
memory.

So, it appears as though Microsoft requires that our datamapper
classes
reside inside a folder called "App_Code", and NO WHERE ELSE.

So, has anyone successfully been able to place their datamappers
in
a
location other than "App_Code", and actually retrieve records
from
a
datamapper class?

TIA, Randy





Jan 10 '07 #5
Have you tried stepping in debug mode with break points within the BLL & DAL
to see if the web interface is calling the methods of your object library?
It might be an issue of the structure of your namespaces. In my demos I put
the fully qualified name of the class starting from the root namespace, e.g.
WEBSWAPP_BLL.Demos is the fully qualified path.

In your case it might be something like MyCompany.Modules.App1.className.
Make sure you put the fully qualified path in the values for TypeName and
DataObjectTypeName properties of the ObjectDataSource. Then set break points
within those methods to debug in VS.

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:
Hi,
Well, I've changed my ObjectDataSource to match your examples, but I am
still not getting any data. I wonder if you can post the code for
"default.aspx.cs" (within "Dropdownlist within a GridView". I'm
particularly interested in seeing how you go about doing the "databind",
which may be my problem.
Many, many thanks!!! Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:34**********************************@microsof t.com...
Hello Randy,

For the purpose of my website where the demos do not have real business
logic (it is just a presentation logic built on top of a dataset),
WEBSWAPP_BLL is just a domain layer with a dataset.

The DAL in that demos website is a VS generated dataset named Samples.xsd
(which is not listed on the website). Its structure (a typed dataset of a
collection of datatables) is not necessary to understanding the demos that
I
placed to demonstrate the ASP.NET server controls features. I load it
into
the application cache to allow the users to write to the dataset in cache
but
then I do not persist their entries on the data store.

The class named WEBSWAPP_BLL.Demos is the compiled into a separate
assembly
from another project (class library), which is not within the folders
structure of the web application. I only add the compiled assembly (dll
file) to the bin folder on the web application (by adding a reference to
the
class library project into my web application project).

So to answer to your questions:
1- A separate class library project compiled into a dll that is copied to
the bin folder of the website
2- Yes
3- No.
4- No.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:
Hi Phillip,
I rally appreciate your help. I like your sample "Dropdownlist within a
GridView", but I do have a few questions about your ObjectDataSource.

Here is the code I'm interested in:
<asp:ObjectDataSource ID="odsProducts" runat="server"
SelectMethod="ProductByID"
TypeName="WEBSWAPP_BLL.Demos"
DataObjectTypeName="WEBSWAPP_BLL.clsProduct">
<SelectParameters>
<asp:ControlParameter
ControlID="ddlProducts" Name="productID" PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
1) I presume that "WEBSWAPP_BLL" is a DLL, right? Where is it located in
your folder structure?
2) I see that you are using "TypeName". I presume that "Demos" is the
class
inside your "WEBSWAPP_BLL" DLL, right?
3) Did you have to add any specific entries into the web.config file to
get
it to work?
4) I haven't seen your "default.aspx.cs" code, but do you have this
reference: "using WEBSWAPP_BLL;" (C#)?

Many thanks, Randy
"Phillip Williams" <WE******@newsgroups.nospamwrote in message
news:DA**********************************@microsof t.com...
Hello Randy,

You can compile your domain layer into a separate assembly and add a
reference to it in your project (all the demos on my website are build
using
this strategy) or you can also download the "Visual Studio 2005 Web
Application Projects" to build applications in the same way as you used
to
VS2003 where you do not have to put your datamappers in the App_Code
folder
http://msdn2.microsoft.com/en-us/asp.net/aa336618.aspx

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Randy Smith" wrote:

Hi ALL,
I wonder if anyone has been using n-tier to bind to a GridView control
by
using the ObjectDataSource. This is our first OOP web application,
and
we
have no tables. Right now we are simply working with objects in
memory.

So, it appears as though Microsoft requires that our datamapper
classes
reside inside a folder called "App_Code", and NO WHERE ELSE.

So, has anyone successfully been able to place their datamappers in a
location other than "App_Code", and actually retrieve records from a
datamapper class?

TIA, Randy



Jan 13 '07 #6

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

Similar topics

1
by: Oleg Ogurok | last post by:
Hi there, I've noticed that ASP.NET 2.0 GridView control doesn't have AllowCustomPaging and VirtualRecordCount. In 1.1, I used DataGrid and a SQL stored procedure that would return only the...
2
by: Robert Smith jr. | last post by:
Hello, Please pardon my newbie question ... I am building an ASP.NET page that displays a recordset with a Delete statement enabled (this all works fine). I want to Insert the current row...
7
by: Ken | last post by:
Hi All - I have a filtered GridView. This GridView has a check box in the first column. This check box is used to identify specific rows for delete operations. On the button click event I...
1
by: A_StClaire_ | last post by:
hi all, I am using a GridView bound to an ObjectDataSource. edit and delete functionality has been enabled. my ObjectDataSource is tied to a TableAdapter that accesses three stored procedures...
2
by: Ian | last post by:
Hiya, Hope this isn't too stupid a question :) I can bind an objectdatasource to a gridview very easily (and there's a thousand tutorials of this on the net). BUT! I just want to get at...
2
by: OJ | last post by:
Hi, I am retrieving data from an external (www) data provider through socket communication. I send a structured query (not SQL or XML) in the form of a string containing tab seperated values and...
8
by: Greg Lyles | last post by:
Hi all, I'm trying to develop an ASP.NET 2.0 website and am running into some real problems with what I thought would be a relatively simple thing to do. In a nutshell, I'm stuck on trying to...
3
by: Mike | last post by:
I'm using the 2.0 framework and cannot get a gridview to return records with an objectDataSource. I can preview the data from the datatable. To make this as simple as possible I used the wizard...
0
by: =?Utf-8?B?RGVubmlzIE1jQ2FydGh5?= | last post by:
I am displaying data from a web service in a DataGrid, using an ObjectDataSource. Retrieving and displaying data is working fine, but there is a problem using Edit mode in the GridView. If my...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
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...
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.