473,406 Members | 2,620 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,406 software developers and data experts.

What am I doing wrong? (Datagrid)

Im trying to get access to a table in codebehind, because the information in
this table is different depending on what it says in the database...

So, either I have to access it from codebehind, or Ill have to make bit of
code on the aspx page...
However, I would prefere code in the aspx page at the moment, but it seemed
easier to access thecode from codebehind...
However...

When I run the following code, (when I look at the code it generates)
I see that <asp:Table> still is visible in the HTML code, this shouldnt be,
should it?
I mean, it should have been converted to normal HTML, it dosnīt, for some
reason...
In other words, the asp:Table code Dosnt work... It simple wont compile...

Any suggestions?
------
<asp:DataGrid id="DataGrid1" runat="server" AllowPaging="True"
AutoGenerateColumns="False" Font-Names="Verdana, Arial, Helvetica,
sans-serif"
AllowCustomPaging="True" GridLines="None" BorderStyle="None"
BorderWidth="0px">
<HeaderStyle Font-Names="Verdana,Arial,Helvetica,sans-serif"
Font-Bold="True" ForeColor="Black"
BackColor="Transparent"></HeaderStyle>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table border="0" Cellpadding="0" Cellspacing="0" Width="100%"
style="FONT-SIZE: 11px; FONT-FAMILY: Verdana, Arial, sans-serif">
<tr onMouseOver='mOvr(this,"#9090FF");' onMouseOut='mOut(this,"");'
onClick="jsfuncreadart('<%# Container.DataItem("ID") %>','<%#
Container.DataItem("Type") %>');">
<td width="10" valign="top"><img src="../bilder/tomgif.gif" width="1"
height="8"><br><img src="../bilder/tomgif.gif" width="1" height="1"><img
src="../bilder/link_pil.gif" width="8" height="7"></td><td>

<asp:Table ID="tableItem" width="100%" borderwidth="0"
cellspacing="0" cellpadding="0">
<asp:TableRow><asp:TableCell Horizontalalign="right"><img
src="../bilder/tomgif.gif" width="1" height="3"></asp:tablecell>
</asp:tableRow>

</asp:Table>
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
<PagerStyle NextPageText="Nästa &amp;gt;" PrevPageText="&amp;lt;
Föregående"
Mode="NumericPages"></PagerStyle>
</asp:DataGrid>
---

Now, there is another question I would like to have answered, when or If I
get this to work, how can I access the container object from codebehind?
Because I want to access this table and build it as I want to depending of
the information on the database, in other words...
I want to do this from the sub:

----
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item) Then
Dim i As Integer
For i = 0 To e.Item.Controls.Count - 1
Try
'tableItem

If (e.Item.Controls(i).ID = "tableItem") Then
Dim table As Table
table = e.Item.Controls(i).Controls(1)
Dim row As TableRow
Dim cell As TableCell
row = New TableRow
cell = New TableCell
'<<<---- HERE??? HOW CAN I ACCESS <%# Container.DataItem("smallheadline") %>
?? IN THIS CODE?
'BECAUSE I NEED TO BUILD THE TABLE DEPENDING ON WHAT IT SAYS IN THE
DATABASE!!!

cell.Text = "TJABBALOOOOO!!!"
row.Cells.Add(cell)
table.Rows.Add(row)
End If
Catch

End Try
Next
End If
End Sub
----
Yours: Kristoffer
Nov 18 '05 #1
4 1213
<asp:table ... RUNAT="SERVER" ... >

:-)

"Kristoffer Arfvidson" <kr********@spamtrap.com> wrote in message
news:uZ**************@TK2MSFTNGP11.phx.gbl...
Im trying to get access to a table in codebehind, because the information in this table is different depending on what it says in the database...

So, either I have to access it from codebehind, or Ill have to make bit of
code on the aspx page...
However, I would prefere code in the aspx page at the moment, but it seemed easier to access thecode from codebehind...
However...

When I run the following code, (when I look at the code it generates)
I see that <asp:Table> still is visible in the HTML code, this shouldnt be, should it?
I mean, it should have been converted to normal HTML, it dosnīt, for some
reason...
In other words, the asp:Table code Dosnt work... It simple wont compile...

Any suggestions?
------
<asp:DataGrid id="DataGrid1" runat="server" AllowPaging="True"
AutoGenerateColumns="False" Font-Names="Verdana, Arial, Helvetica,
sans-serif"
AllowCustomPaging="True" GridLines="None" BorderStyle="None"
BorderWidth="0px">
<HeaderStyle Font-Names="Verdana,Arial,Helvetica,sans-serif"
Font-Bold="True" ForeColor="Black"
BackColor="Transparent"></HeaderStyle>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table border="0" Cellpadding="0" Cellspacing="0" Width="100%"
style="FONT-SIZE: 11px; FONT-FAMILY: Verdana, Arial, sans-serif">
<tr onMouseOver='mOvr(this,"#9090FF");' onMouseOut='mOut(this,"");'
onClick="jsfuncreadart('<%# Container.DataItem("ID") %>','<%#
Container.DataItem("Type") %>');">
<td width="10" valign="top"><img src="../bilder/tomgif.gif" width="1"
height="8"><br><img src="../bilder/tomgif.gif" width="1" height="1"><img
src="../bilder/link_pil.gif" width="8" height="7"></td><td>

<asp:Table ID="tableItem" width="100%" borderwidth="0"
cellspacing="0" cellpadding="0">
<asp:TableRow><asp:TableCell Horizontalalign="right"><img
src="../bilder/tomgif.gif" width="1" height="3"></asp:tablecell>
</asp:tableRow>

</asp:Table>
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
<PagerStyle NextPageText="Nästa &amp;gt;" PrevPageText="&amp;lt;
Föregående"
Mode="NumericPages"></PagerStyle>
</asp:DataGrid>
---

Now, there is another question I would like to have answered, when or If I
get this to work, how can I access the container object from codebehind?
Because I want to access this table and build it as I want to depending of
the information on the database, in other words...
I want to do this from the sub:

----
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item) Then
Dim i As Integer
For i = 0 To e.Item.Controls.Count - 1
Try
'tableItem

If (e.Item.Controls(i).ID = "tableItem") Then
Dim table As Table
table = e.Item.Controls(i).Controls(1)
Dim row As TableRow
Dim cell As TableCell
row = New TableRow
cell = New TableCell
'<<<---- HERE??? HOW CAN I ACCESS <%# Container.DataItem("smallheadline") %> ?? IN THIS CODE?
'BECAUSE I NEED TO BUILD THE TABLE DEPENDING ON WHAT IT SAYS IN THE
DATABASE!!!

cell.Text = "TJABBALOOOOO!!!"
row.Cells.Add(cell)
table.Rows.Add(row)
End If
Catch

End Try
Next
End If
End Sub
----
Yours: Kristoffer

Nov 18 '05 #2
Ahh, ok,thats it, time for me to get some sleep... ;-)
Thanks!
Anyways, how about that second question?
I also, get a problem while trying to add the tablerows to the existing
table...
(see in sub)...

the table.Rows.Add(row) dosnt seem to be enough....

So, I want to be able to add rows to the table, and also access the database
values from this sub...
Now, there is another question I would like to have answered, when or If I get this to work, how can I access the container object from codebehind?
Because I want to access this table and build it as I want to depending of the information on the database, in other words...
I want to do this from the sub:

----
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item) Then
Dim i As Integer
For i = 0 To e.Item.Controls.Count - 1
Try
'tableItem

If (e.Item.Controls(i).ID = "tableItem") Then
Dim table As Table
table = e.Item.Controls(i).Controls(1)
Dim row As TableRow
Dim cell As TableCell
row = New TableRow
cell = New TableCell
'<<<---- HERE??? HOW CAN I ACCESS <%# Container.DataItem("smallheadline")
%>
?? IN THIS CODE?
'BECAUSE I NEED TO BUILD THE TABLE DEPENDING ON WHAT IT SAYS IN THE
DATABASE!!!

cell.Text = "TJABBALOOOOO!!!"
row.Cells.Add(cell)
table.Rows.Add(row)
End If
Catch

End Try
Next
End If
End Sub

----------
Yours Kristoffer

"Michael Ramey" <raterus@localhost> skrev i meddelandet
news:OO**************@TK2MSFTNGP11.phx.gbl... <asp:table ... RUNAT="SERVER" ... >

:-)

"Kristoffer Arfvidson" <kr********@spamtrap.com> wrote in message
news:uZ**************@TK2MSFTNGP11.phx.gbl...
Im trying to get access to a table in codebehind, because the
information in
this table is different depending on what it says in the database...

So, either I have to access it from codebehind, or Ill have to make bit
of code on the aspx page...
However, I would prefere code in the aspx page at the moment, but it

seemed
easier to access thecode from codebehind...
However...

When I run the following code, (when I look at the code it generates)
I see that <asp:Table> still is visible in the HTML code, this shouldnt

be,
should it?
I mean, it should have been converted to normal HTML, it dosnīt, for some reason...
In other words, the asp:Table code Dosnt work... It simple wont compile...
Any suggestions?
------
<asp:DataGrid id="DataGrid1" runat="server" AllowPaging="True"
AutoGenerateColumns="False" Font-Names="Verdana, Arial, Helvetica,
sans-serif"
AllowCustomPaging="True" GridLines="None" BorderStyle="None"
BorderWidth="0px">
<HeaderStyle Font-Names="Verdana,Arial,Helvetica,sans-serif"
Font-Bold="True" ForeColor="Black"
BackColor="Transparent"></HeaderStyle>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table border="0" Cellpadding="0" Cellspacing="0" Width="100%"
style="FONT-SIZE: 11px; FONT-FAMILY: Verdana, Arial, sans-serif">
<tr onMouseOver='mOvr(this,"#9090FF");' onMouseOut='mOut(this,"");'
onClick="jsfuncreadart('<%# Container.DataItem("ID") %>','<%#
Container.DataItem("Type") %>');">
<td width="10" valign="top"><img src="../bilder/tomgif.gif" width="1"
height="8"><br><img src="../bilder/tomgif.gif" width="1" height="1"><img
src="../bilder/link_pil.gif" width="8" height="7"></td><td>

<asp:Table ID="tableItem" width="100%" borderwidth="0"
cellspacing="0" cellpadding="0">
<asp:TableRow><asp:TableCell Horizontalalign="right"><img
src="../bilder/tomgif.gif" width="1" height="3"></asp:tablecell>
</asp:tableRow>

</asp:Table>
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
<PagerStyle NextPageText="Nästa &amp;gt;" PrevPageText="&amp;lt;
Föregående"
Mode="NumericPages"></PagerStyle>
</asp:DataGrid>
---

Now, there is another question I would like to have answered, when or If I get this to work, how can I access the container object from codebehind?
Because I want to access this table and build it as I want to depending of the information on the database, in other words...
I want to do this from the sub:

----
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item) Then
Dim i As Integer
For i = 0 To e.Item.Controls.Count - 1
Try
'tableItem

If (e.Item.Controls(i).ID = "tableItem") Then
Dim table As Table
table = e.Item.Controls(i).Controls(1)
Dim row As TableRow
Dim cell As TableCell
row = New TableRow
cell = New TableCell
'<<<---- HERE??? HOW CAN I ACCESS <%#

Container.DataItem("smallheadline") %>
?? IN THIS CODE?
'BECAUSE I NEED TO BUILD THE TABLE DEPENDING ON WHAT IT SAYS IN THE
DATABASE!!!

cell.Text = "TJABBALOOOOO!!!"
row.Cells.Add(cell)
table.Rows.Add(row)
End If
Catch

End Try
Next
End If
End Sub
----
Yours: Kristoffer


Nov 18 '05 #3
I see that the If (e.Item.Controls(i).ID = "tableItem") Then is never met...
Hmm, I just have to figure out another way to identify the table...
but the question about the database???

Yours: Kristoffer
"Kristoffer Arfvidson" <kr********@spamtrap.com> skrev i meddelandet
news:OO**************@tk2msftngp13.phx.gbl...
Ahh, ok,thats it, time for me to get some sleep... ;-)
Thanks!
Anyways, how about that second question?
I also, get a problem while trying to add the tablerows to the existing
table...
(see in sub)...

the table.Rows.Add(row) dosnt seem to be enough....

So, I want to be able to add rows to the table, and also access the database values from this sub...
Now, there is another question I would like to have answered, when or If
I
get this to work, how can I access the container object from
codebehind? Because I want to access this table and build it as I want to depending
of the information on the database, in other words...
I want to do this from the sub:

----
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item) Then
Dim i As Integer
For i = 0 To e.Item.Controls.Count - 1
Try
'tableItem

If (e.Item.Controls(i).ID = "tableItem") Then
Dim table As Table
table = e.Item.Controls(i).Controls(1)
Dim row As TableRow
Dim cell As TableCell
row = New TableRow
cell = New TableCell
'<<<---- HERE??? HOW CAN I ACCESS <%# Container.DataItem("smallheadline")
%>
?? IN THIS CODE?
'BECAUSE I NEED TO BUILD THE TABLE DEPENDING ON WHAT IT SAYS IN THE
DATABASE!!!

cell.Text = "TJABBALOOOOO!!!"
row.Cells.Add(cell)
table.Rows.Add(row)
End If
Catch

End Try
Next
End If
End Sub
----------
Yours Kristoffer

"Michael Ramey" <raterus@localhost> skrev i meddelandet
news:OO**************@TK2MSFTNGP11.phx.gbl...
<asp:table ... RUNAT="SERVER" ... >

:-)

"Kristoffer Arfvidson" <kr********@spamtrap.com> wrote in message
news:uZ**************@TK2MSFTNGP11.phx.gbl...
Im trying to get access to a table in codebehind, because the
information
in
this table is different depending on what it says in the database...

So, either I have to access it from codebehind, or Ill have to make

bit of code on the aspx page...
However, I would prefere code in the aspx page at the moment, but it seemed
easier to access thecode from codebehind...
However...

When I run the following code, (when I look at the code it generates)
I see that <asp:Table> still is visible in the HTML code, this
shouldnt be,
should it?
I mean, it should have been converted to normal HTML, it dosnīt, for

some reason...
In other words, the asp:Table code Dosnt work... It simple wont compile...
Any suggestions?
------
<asp:DataGrid id="DataGrid1" runat="server" AllowPaging="True"
AutoGenerateColumns="False" Font-Names="Verdana, Arial, Helvetica,
sans-serif"
AllowCustomPaging="True" GridLines="None" BorderStyle="None"
BorderWidth="0px">
<HeaderStyle Font-Names="Verdana,Arial,Helvetica,sans-serif"
Font-Bold="True" ForeColor="Black"
BackColor="Transparent"></HeaderStyle>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table border="0" Cellpadding="0" Cellspacing="0" Width="100%"
style="FONT-SIZE: 11px; FONT-FAMILY: Verdana, Arial, sans-serif">
<tr onMouseOver='mOvr(this,"#9090FF");'
onMouseOut='mOut(this,"");' onClick="jsfuncreadart('<%# Container.DataItem("ID") %>','<%#
Container.DataItem("Type") %>');">
<td width="10" valign="top"><img src="../bilder/tomgif.gif" width="1"
height="8"><br><img src="../bilder/tomgif.gif" width="1" height="1"><img src="../bilder/link_pil.gif" width="8" height="7"></td><td>

<asp:Table ID="tableItem" width="100%" borderwidth="0"
cellspacing="0" cellpadding="0">
<asp:TableRow><asp:TableCell Horizontalalign="right"><img
src="../bilder/tomgif.gif" width="1" height="3"></asp:tablecell>
</asp:tableRow>

</asp:Table>
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
<PagerStyle NextPageText="Nästa &amp;gt;" PrevPageText="&amp;lt;
Föregående"
Mode="NumericPages"></PagerStyle>
</asp:DataGrid>
---

Now, there is another question I would like to have answered, when or If I get this to work, how can I access the container object from
codebehind? Because I want to access this table and build it as I want to
depending of the information on the database, in other words...
I want to do this from the sub:

----
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item) Then
Dim i As Integer
For i = 0 To e.Item.Controls.Count - 1
Try
'tableItem

If (e.Item.Controls(i).ID = "tableItem") Then
Dim table As Table
table = e.Item.Controls(i).Controls(1)
Dim row As TableRow
Dim cell As TableCell
row = New TableRow
cell = New TableCell
'<<<---- HERE??? HOW CAN I ACCESS <%#

Container.DataItem("smallheadline")
%>
?? IN THIS CODE?
'BECAUSE I NEED TO BUILD THE TABLE DEPENDING ON WHAT IT SAYS IN THE
DATABASE!!!

cell.Text = "TJABBALOOOOO!!!"
row.Cells.Add(cell)
table.Rows.Add(row)
End If
Catch

End Try
Next
End If
End Sub
----
Yours: Kristoffer



Nov 18 '05 #4
AHA!!!
Found it, or?
e.Item.DataItem("smallheadline")

Seems to work, ok, thanks!

Yours: Kristoffer

"Kristoffer Arfvidson" <kr********@spamtrap.com> skrev i meddelandet
news:uZ**************@TK2MSFTNGP11.phx.gbl...
Im trying to get access to a table in codebehind, because the information in this table is different depending on what it says in the database...

So, either I have to access it from codebehind, or Ill have to make bit of
code on the aspx page...
However, I would prefere code in the aspx page at the moment, but it seemed easier to access thecode from codebehind...
However...

When I run the following code, (when I look at the code it generates)
I see that <asp:Table> still is visible in the HTML code, this shouldnt be, should it?
I mean, it should have been converted to normal HTML, it dosnīt, for some
reason...
In other words, the asp:Table code Dosnt work... It simple wont compile...

Any suggestions?
------
<asp:DataGrid id="DataGrid1" runat="server" AllowPaging="True"
AutoGenerateColumns="False" Font-Names="Verdana, Arial, Helvetica,
sans-serif"
AllowCustomPaging="True" GridLines="None" BorderStyle="None"
BorderWidth="0px">
<HeaderStyle Font-Names="Verdana,Arial,Helvetica,sans-serif"
Font-Bold="True" ForeColor="Black"
BackColor="Transparent"></HeaderStyle>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table border="0" Cellpadding="0" Cellspacing="0" Width="100%"
style="FONT-SIZE: 11px; FONT-FAMILY: Verdana, Arial, sans-serif">
<tr onMouseOver='mOvr(this,"#9090FF");' onMouseOut='mOut(this,"");'
onClick="jsfuncreadart('<%# Container.DataItem("ID") %>','<%#
Container.DataItem("Type") %>');">
<td width="10" valign="top"><img src="../bilder/tomgif.gif" width="1"
height="8"><br><img src="../bilder/tomgif.gif" width="1" height="1"><img
src="../bilder/link_pil.gif" width="8" height="7"></td><td>

<asp:Table ID="tableItem" width="100%" borderwidth="0"
cellspacing="0" cellpadding="0">
<asp:TableRow><asp:TableCell Horizontalalign="right"><img
src="../bilder/tomgif.gif" width="1" height="3"></asp:tablecell>
</asp:tableRow>

</asp:Table>
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
<PagerStyle NextPageText="Nästa &amp;gt;" PrevPageText="&amp;lt;
Föregående"
Mode="NumericPages"></PagerStyle>
</asp:DataGrid>
---

Now, there is another question I would like to have answered, when or If I
get this to work, how can I access the container object from codebehind?
Because I want to access this table and build it as I want to depending of
the information on the database, in other words...
I want to do this from the sub:

----
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
If (e.Item.ItemType = ListItemType.Item) Then
Dim i As Integer
For i = 0 To e.Item.Controls.Count - 1
Try
'tableItem

If (e.Item.Controls(i).ID = "tableItem") Then
Dim table As Table
table = e.Item.Controls(i).Controls(1)
Dim row As TableRow
Dim cell As TableCell
row = New TableRow
cell = New TableCell
'<<<---- HERE??? HOW CAN I ACCESS <%# Container.DataItem("smallheadline") %> ?? IN THIS CODE?
'BECAUSE I NEED TO BUILD THE TABLE DEPENDING ON WHAT IT SAYS IN THE
DATABASE!!!

cell.Text = "TJABBALOOOOO!!!"
row.Cells.Add(cell)
table.Rows.Add(row)
End If
Catch

End Try
Next
End If
End Sub
----
Yours: Kristoffer

Nov 18 '05 #5

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

Similar topics

3
by: Joe Bloggs | last post by:
Anyone know why the code below does not work. All I want is to check a checkbox, then hit a button, then for the value of the DataKeyField in the DataGrid to show up as the Text property in a...
2
by: Aaron Ackerman | last post by:
I cannot a row to this bound DataGrid to SAVE MY LIFE! I have tried everything and I am at a loss. The using goes into add mode with the add button adds his data then updates with the update...
7
by: David Laub | last post by:
I have stumbled across various Netscape issues, none of which appear to be solvable by tweaking the clientTarget or targetSchema properties. At this point, I'm not even interested in "solving"...
3
by: Ben Becker | last post by:
I am trying to build a custom crosstab type of grid where I take some items in a data grid and based on the content of the current item compared to the previous item, determine if a new row in a...
5
by: Tim::.. | last post by:
Can someone please tell me what is wrong with the following code! I have a record in the datareader but it isn't showing up and niether is the label... I presume there is a problem with this...
1
by: I am Sam | last post by:
I need to be able to delete a record/row from a database table. I am using a DataGrid which is not sending the row index key properly to the event in the codebehind. When I set a break point and...
8
by: cjobes | last post by:
Hi all, The code below is part of a form where I would like the user to make selections from a table. The data is brought into the form from another form with: Public WriteOnly Property...
4
by: Aaron Smith | last post by:
Dim dv As DataView = New DataView(FacilitiesDS1.Facilities, "", "ID ASC", DataViewRowState.CurrentRows) Dim iPos As Integer = dv.Find(dr.Item("ID")) Me.BindingContext(FacilitiesDS1,...
1
by: fiaolle | last post by:
Hi The first set of source code is the class for a combobox in a grid, hopefully. In the second set of code we try to use the combobox class, but the grid is empty. I don't understand how this...
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: 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
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,...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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
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...

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.