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

ASP.net: Error "Exception Details: System.InvalidOperationException: The ConnectionString property has not been initialized."

Dear All,
When I run an example program on the
http://www.dotnetjunkies.com/quickst...d1.aspx&font=3

I received an error message:

"The ConnectionString property has not been initialized.

Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The ConnectionString
property has not been initialized.

Source Error:

Line 11: Line 12: DataSet ds = new DataSet();Line 13:
myCommand.Fill(ds, "Authors");Line 14: Line 15:
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;"Can you tell me
what's wrong? Thanks!
The example code is below:
======================

<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<script language="VB" runat="server">
Sub Page_Load(Sender As Object, E As EventArgs)
Dim DS As DataSet
Dim MyConnection As SqlConnection
Dim MyCommand As SqlDataAdapter
MyConnection = New
SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt
ring"))
MyCommand = New SqlDataAdapter("select * from Authors",
MyConnection)
DS = new DataSet()
MyCommand.Fill(ds, "Authors")
MyDataGrid.DataSource=ds.Tables("Authors").Default View
MyDataGrid.DataBind()
End Sub
</script>
<body>
<h3><font face="Verdana">Simple Select to a DataGrid Control</font></h3>
<ASP:DataGrid id="MyDataGrid" runat="server"
Width="700"
BackColor="#ccccff"
BorderColor="black"
ShowFooter="false"
CellPadding=3
CellSpacing="0"
Font-Name="Verdana"
Font-Size="8pt"
HeaderStyle-BackColor="#aaaadd"
EnableViewState="false"
/>
</body>
</html>
Nov 18 '05 #1
6 6065
do you have a web.config file with these lines

<appSettings>
<add key="PubsString" key="your connectionstring here" />
</appSettings>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:eY**************@TK2MSFTNGP12.phx.gbl...
Dear All,
When I run an example program on the
http://www.dotnetjunkies.com/quickst...d1.aspx&font=3
I received an error message:

"The ConnectionString property has not been initialized.

Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The ConnectionString
property has not been initialized.

Source Error:

Line 11: Line 12: DataSet ds = new DataSet();Line 13:
myCommand.Fill(ds, "Authors");Line 14: Line 15:
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;"Can you tell me
what's wrong? Thanks!
The example code is below:
======================

<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<script language="VB" runat="server">
Sub Page_Load(Sender As Object, E As EventArgs)
Dim DS As DataSet
Dim MyConnection As SqlConnection
Dim MyCommand As SqlDataAdapter
MyConnection = New
SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt ring"))
MyCommand = New SqlDataAdapter("select * from Authors",
MyConnection)
DS = new DataSet()
MyCommand.Fill(ds, "Authors")
MyDataGrid.DataSource=ds.Tables("Authors").Default View
MyDataGrid.DataBind()
End Sub
</script>
<body>
<h3><font face="Verdana">Simple Select to a DataGrid Control</font></h3>
<ASP:DataGrid id="MyDataGrid" runat="server"
Width="700"
BackColor="#ccccff"
BorderColor="black"
ShowFooter="false"
CellPadding=3
CellSpacing="0"
Font-Name="Verdana"
Font-Size="8pt"
HeaderStyle-BackColor="#aaaadd"
EnableViewState="false"
/>
</body>
</html>

Nov 18 '05 #2


Thank you for your help.

There is no such paragragh in the web.config file. Which place i can add
these lines into this file?

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
do you have a web.config file with these lines

<appSettings>
<add key="PubsString" key="your connectionstring here" />
</appSettings>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:eY**************@TK2MSFTNGP12.phx.gbl...
Dear All,
When I run an example program on the

http://www.dotnetjunkies.com/quickst...d1.aspx&font=3

I received an error message:

"The ConnectionString property has not been initialized.

Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The ConnectionString property has not been initialized.

Source Error:

Line 11: Line 12: DataSet ds = new DataSet();Line 13:
myCommand.Fill(ds, "Authors");Line 14: Line 15:
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;"Can you tell me
what's wrong? Thanks!
The example code is below:
======================

<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<script language="VB" runat="server">
Sub Page_Load(Sender As Object, E As EventArgs)
Dim DS As DataSet
Dim MyConnection As SqlConnection
Dim MyCommand As SqlDataAdapter
MyConnection = New

SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt
ring"))
MyCommand = New SqlDataAdapter("select * from Authors",
MyConnection)
DS = new DataSet()
MyCommand.Fill(ds, "Authors")
MyDataGrid.DataSource=ds.Tables("Authors").Default View
MyDataGrid.DataBind()
End Sub
</script>
<body>
<h3><font face="Verdana">Simple Select to a DataGrid Control</font></h3> <ASP:DataGrid id="MyDataGrid" runat="server"
Width="700"
BackColor="#ccccff"
BorderColor="black"
ShowFooter="false"
CellPadding=3
CellSpacing="0"
Font-Name="Verdana"
Font-Size="8pt"
HeaderStyle-BackColor="#aaaadd"
EnableViewState="false"
/>
</body>
</html>


Nov 18 '05 #3

your web.config must have such structure

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<system.web>

.....

</system.web>

<appSettings>

<add key="PubsString" key="your connectionstring here" />

</appSettings>

</configuration>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:u0**************@tk2msftngp13.phx.gbl...


Thank you for your help.

There is no such paragragh in the web.config file. Which place i can add
these lines into this file?

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
do you have a web.config file with these lines

<appSettings>
<add key="PubsString" key="your connectionstring here" />
</appSettings>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:eY**************@TK2MSFTNGP12.phx.gbl...
Dear All,
When I run an example program on the

http://www.dotnetjunkies.com/quickst...d1.aspx&font=3

I received an error message:

"The ConnectionString property has not been initialized.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The ConnectionString property has not been initialized.

Source Error:

Line 11: Line 12: DataSet ds = new DataSet();Line 13:
myCommand.Fill(ds, "Authors");Line 14: Line 15:
MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;"Can you tell me what's wrong? Thanks!
The example code is below:
======================

<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<script language="VB" runat="server">
Sub Page_Load(Sender As Object, E As EventArgs)
Dim DS As DataSet
Dim MyConnection As SqlConnection
Dim MyCommand As SqlDataAdapter
MyConnection = New

SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt
ring"))
MyCommand = New SqlDataAdapter("select * from Authors",
MyConnection)
DS = new DataSet()
MyCommand.Fill(ds, "Authors")
MyDataGrid.DataSource=ds.Tables("Authors").Default View
MyDataGrid.DataBind()
End Sub
</script>
<body>
<h3><font face="Verdana">Simple Select to a DataGrid Control</font></h3> <ASP:DataGrid id="MyDataGrid" runat="server"
Width="700"
BackColor="#ccccff"
BorderColor="black"
ShowFooter="false"
CellPadding=3
CellSpacing="0"
Font-Name="Verdana"
Font-Size="8pt"
HeaderStyle-BackColor="#aaaadd"
EnableViewState="false"
/>
</body>
</html>



Nov 18 '05 #4
Dear Martin,

Thak you for your quick reply.I am sorry for interrupt you again,

I have added the following lines into the web.config file,

<appSettings>
<add key="PubsString" value="Provider='sqloledb';Initial Catalog='Pubs';
uid='v-tleung';pwd='Mynameis@01'">
</add>
</appSettings>

but i recieved the following error:

"Exception Details: System.ArgumentException: Keyword not supported:
'provider'.

Source Error:
Line 11: Dim MyCommand As SqlDataAdapter
Line 12:
Line 13: MyConnection = New
SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt
ring"))
Line 14: MyCommand = New SqlDataAdapter("select * from Authors",
MyConnection)
Line 15:

I have installed Sql Server on my localhost. How can we compose the
ConnectionString. Does this program work well on your side?

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:O8**************@tk2msftngp13.phx.gbl...

your web.config must have such structure

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<system.web>

....

</system.web>

<appSettings>

<add key="PubsString" key="your connectionstring here" />

</appSettings>

</configuration>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:u0**************@tk2msftngp13.phx.gbl...


Thank you for your help.

There is no such paragragh in the web.config file. Which place i can add
these lines into this file?

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
do you have a web.config file with these lines

<appSettings>
<add key="PubsString" key="your connectionstring here" />
</appSettings>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:eY**************@TK2MSFTNGP12.phx.gbl...
> Dear All,
> When I run an example program on the
>

http://www.dotnetjunkies.com/quickst...d1.aspx&font=3
>
> I received an error message:
>
>
>
> "The ConnectionString property has not been initialized.
>
> Description: An unhandled exception occurred during the execution of the > current web request. Please review the stack trace for more information > about the error and where it originated in the code.
>
> Exception Details: System.InvalidOperationException: The

ConnectionString
> property has not been initialized.
>
> Source Error:
>
> Line 11: Line 12: DataSet ds = new DataSet();Line 13:
> myCommand.Fill(ds, "Authors");Line 14: Line 15:
> MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;"Can you tell me > what's wrong? Thanks!
> The example code is below:
> ======================
>
> <%@ Import Namespace="System.Data" %>
> <%@ Import Namespace="System.Data.SqlClient" %>
> <html>
> <script language="VB" runat="server">
> Sub Page_Load(Sender As Object, E As EventArgs)
> Dim DS As DataSet
> Dim MyConnection As SqlConnection
> Dim MyCommand As SqlDataAdapter
> MyConnection = New
>

SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt
> ring"))
> MyCommand = New SqlDataAdapter("select * from Authors",
> MyConnection)
> DS = new DataSet()
> MyCommand.Fill(ds, "Authors")
> MyDataGrid.DataSource=ds.Tables("Authors").Default View
> MyDataGrid.DataBind()
> End Sub
> </script>
> <body>
> <h3><font face="Verdana">Simple Select to a DataGrid

Control</font></h3>
> <ASP:DataGrid id="MyDataGrid" runat="server"
> Width="700"
> BackColor="#ccccff"
> BorderColor="black"
> ShowFooter="false"
> CellPadding=3
> CellSpacing="0"
> Font-Name="Verdana"
> Font-Size="8pt"
> HeaderStyle-BackColor="#aaaadd"
> EnableViewState="false"
> />
> </body>
> </html>
>
>



Nov 18 '05 #5
Well, because of using sql client you can not use the oledb provider
try using this connection string :

workstation id=your_computer_name;packet size=4096;user id=v-tleung;data
source=your_sql_server;persist security info=False;initial catalog=Pubs;
Password=Mynameis@01;

if your sql server is installed locally for data source put : localhost

you can see here all of possible connection strings :
http://www.connectionstrings.com/

Regards
Martin

"Tony" <li*********@hotmail.com> wrote in message
news:uL**************@tk2msftngp13.phx.gbl...
Dear Martin,

Thak you for your quick reply.I am sorry for interrupt you again,

I have added the following lines into the web.config file,

<appSettings>
<add key="PubsString" value="Provider='sqloledb';Initial Catalog='Pubs';
uid='v-tleung';pwd='Mynameis@01'">
</add>
</appSettings>

but i recieved the following error:

"Exception Details: System.ArgumentException: Keyword not supported:
'provider'.

Source Error:
Line 11: Dim MyCommand As SqlDataAdapter
Line 12:
Line 13: MyConnection = New
SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt ring"))
Line 14: MyCommand = New SqlDataAdapter("select * from Authors",
MyConnection)
Line 15:

I have installed Sql Server on my localhost. How can we compose the
ConnectionString. Does this program work well on your side?

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:O8**************@tk2msftngp13.phx.gbl...

your web.config must have such structure

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<system.web>

....

</system.web>

<appSettings>

<add key="PubsString" key="your connectionstring here" />

</appSettings>

</configuration>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:u0**************@tk2msftngp13.phx.gbl...


Thank you for your help.

There is no such paragragh in the web.config file. Which place i can add these lines into this file?

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
> do you have a web.config file with these lines
>
> <appSettings>
> <add key="PubsString" key="your connectionstring here" />
> </appSettings>
>
> Regards
> Martin
>
>
> "Tony" <li*********@hotmail.com> wrote in message
> news:eY**************@TK2MSFTNGP12.phx.gbl...
> > Dear All,
> > When I run an example program on the
> >
>

http://www.dotnetjunkies.com/quickst...d1.aspx&font=3
> >
> > I received an error message:
> >
> >
> >
> > "The ConnectionString property has not been initialized.
> >
> > Description: An unhandled exception occurred during the execution of
the
> > current web request. Please review the stack trace for more

information
> > about the error and where it originated in the code.
> >
> > Exception Details: System.InvalidOperationException: The
ConnectionString
> > property has not been initialized.
> >
> > Source Error:
> >
> > Line 11: Line 12: DataSet ds = new DataSet();Line 13:
> > myCommand.Fill(ds, "Authors");Line 14: Line 15:
> > MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;"Can you
tell me
> > what's wrong? Thanks!
> > The example code is below:
> > ======================
> >
> > <%@ Import Namespace="System.Data" %>
> > <%@ Import Namespace="System.Data.SqlClient" %>
> > <html>
> > <script language="VB" runat="server">
> > Sub Page_Load(Sender As Object, E As EventArgs)
> > Dim DS As DataSet
> > Dim MyConnection As SqlConnection
> > Dim MyCommand As SqlDataAdapter
> > MyConnection = New
> >
>

SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt > > ring"))
> > MyCommand = New SqlDataAdapter("select * from Authors",
> > MyConnection)
> > DS = new DataSet()
> > MyCommand.Fill(ds, "Authors")
> > MyDataGrid.DataSource=ds.Tables("Authors").Default View
> > MyDataGrid.DataBind()
> > End Sub
> > </script>
> > <body>
> > <h3><font face="Verdana">Simple Select to a DataGrid
Control</font></h3>
> > <ASP:DataGrid id="MyDataGrid" runat="server"
> > Width="700"
> > BackColor="#ccccff"
> > BorderColor="black"
> > ShowFooter="false"
> > CellPadding=3
> > CellSpacing="0"
> > Font-Name="Verdana"
> > Font-Size="8pt"
> > HeaderStyle-BackColor="#aaaadd"
> > EnableViewState="false"
> > />
> > </body>
> > </html>
> >
> >
>
>



Nov 18 '05 #6
Dear Martin,

It works!!

After I used the following connection string:

ˇ°workstation id='sha-tongl-xp1';uid=sa;pwd='';server=localhost;initial
catalog='Pubs'ˇ±

I really appreciated your help. Have a wonderful day!

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Well, because of using sql client you can not use the oledb provider
try using this connection string :

workstation id=your_computer_name;packet size=4096;user id=v-tleung;data
source=your_sql_server;persist security info=False;initial catalog=Pubs;
Password=Mynameis@01;

if your sql server is installed locally for data source put : localhost

you can see here all of possible connection strings :
http://www.connectionstrings.com/

Regards
Martin

"Tony" <li*********@hotmail.com> wrote in message
news:uL**************@tk2msftngp13.phx.gbl...
Dear Martin,

Thak you for your quick reply.I am sorry for interrupt you again,

I have added the following lines into the web.config file,

<appSettings>
<add key="PubsString" value="Provider='sqloledb';Initial Catalog='Pubs';
uid='v-tleung';pwd='Mynameis@01'">
</add>
</appSettings>

but i recieved the following error:

"Exception Details: System.ArgumentException: Keyword not supported:
'provider'.

Source Error:
Line 11: Dim MyCommand As SqlDataAdapter
Line 12:
Line 13: MyConnection = New

SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt
ring"))
Line 14: MyCommand = New SqlDataAdapter("select * from Authors",
MyConnection)
Line 15:

I have installed Sql Server on my localhost. How can we compose the
ConnectionString. Does this program work well on your side?

"Martin Marinov" <me********@mecrossroad.bg> wrote in message
news:O8**************@tk2msftngp13.phx.gbl...

your web.config must have such structure

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<system.web>

....

</system.web>

<appSettings>

<add key="PubsString" key="your connectionstring here" />

</appSettings>

</configuration>

Regards
Martin
"Tony" <li*********@hotmail.com> wrote in message
news:u0**************@tk2msftngp13.phx.gbl...
>
>
> Thank you for your help.
>
> There is no such paragragh in the web.config file. Which place i can

add > these lines into this file?
>
> "Martin Marinov" <me********@mecrossroad.bg> wrote in message
> news:%2***************@TK2MSFTNGP10.phx.gbl...
> > do you have a web.config file with these lines
> >
> > <appSettings>
> > <add key="PubsString" key="your connectionstring here" />
> > </appSettings>
> >
> > Regards
> > Martin
> >
> >
> > "Tony" <li*********@hotmail.com> wrote in message
> > news:eY**************@TK2MSFTNGP12.phx.gbl...
> > > Dear All,
> > > When I run an example program on the
> > >
> >
>

http://www.dotnetjunkies.com/quickst...d1.aspx&font=3
> > >
> > > I received an error message:
> > >
> > >
> > >
> > > "The ConnectionString property has not been initialized.
> > >
> > > Description: An unhandled exception occurred during the execution of
the
> > > current web request. Please review the stack trace for more
information
> > > about the error and where it originated in the code.
> > >
> > > Exception Details: System.InvalidOperationException: The
> ConnectionString
> > > property has not been initialized.
> > >
> > > Source Error:
> > >
> > > Line 11: Line 12: DataSet ds = new DataSet();Line 13:
> > > myCommand.Fill(ds, "Authors");Line 14: Line 15:
> > > MyDataGrid.DataSource=ds.Tables["Authors"].DefaultView;"Can you tell me
> > > what's wrong? Thanks!
> > > The example code is below:
> > > ======================
> > >
> > > <%@ Import Namespace="System.Data" %>
> > > <%@ Import Namespace="System.Data.SqlClient" %>
> > > <html>
> > > <script language="VB" runat="server">
> > > Sub Page_Load(Sender As Object, E As EventArgs)
> > > Dim DS As DataSet
> > > Dim MyConnection As SqlConnection
> > > Dim MyCommand As SqlDataAdapter
> > > MyConnection = New
> > >
> >
>

SqlConnection(System.Configuration.ConfigurationSe ttings.AppSettings("PubsSt > > > ring"))
> > > MyCommand = New SqlDataAdapter("select * from Authors",
> > > MyConnection)
> > > DS = new DataSet()
> > > MyCommand.Fill(ds, "Authors")
> > > MyDataGrid.DataSource=ds.Tables("Authors").Default View
> > > MyDataGrid.DataBind()
> > > End Sub
> > > </script>
> > > <body>
> > > <h3><font face="Verdana">Simple Select to a DataGrid
> Control</font></h3>
> > > <ASP:DataGrid id="MyDataGrid" runat="server"
> > > Width="700"
> > > BackColor="#ccccff"
> > > BorderColor="black"
> > > ShowFooter="false"
> > > CellPadding=3
> > > CellSpacing="0"
> > > Font-Name="Verdana"
> > > Font-Size="8pt"
> > > HeaderStyle-BackColor="#aaaadd"
> > > EnableViewState="false"
> > > />
> > > </body>
> > > </html>
> > >
> > >
> >
> >
>
>



Nov 18 '05 #7

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

Similar topics

0
by: carbon_dragon | last post by:
The application is a console app, though it does have a temporary windows form console, which is fairly complicated and which was developed in VS2003. I installed VS2005 on an XP OS and tried to...
4
by: Mark | last post by:
I have a COM object that calls into a C# Forms library. The library can throw exceptions and I want to handle the exceptions in COM. Adam Nathan wrote a Microsoft sponsored book titled .Net and Com...
0
by: huobazi | last post by:
I have many dropdownlist controls in my ascx (and use LoadControl in a aspx fiel) file,so i write a method "InitList(DropDownList list,string strsql,string TextField,string ValueField)" but when i...
3
by: jack bretcher | last post by:
I am developing a DDL that will be a wrapper for an existing set of libs. What I am trying to do is implement the class.error property in my wrapper. I have tried to create a readonly property...
1
by: R | last post by:
Hi All, I'm using PHP 5, my code fully separates code from content, my code throws exceptions (LIZException) when error occurs. but every time I throw exception I get this fatal error: ...
2
by: Wing Siu | last post by:
Dear All I would like to ask you an opinion of ASP.NET exception handling I am working in a software house and need to deliver a system to our customer. However, as we knew (of course it can...
0
by: Edhy Rijo [Progytech] | last post by:
Hi All, I am very new to VB.NET and creating small project to that will copy all files from a DVD to a folder in the Hard Drive. While doing the copy around 30% I got the following error: ...
0
by: SystemDown | last post by:
I have an ASP.NET application that works perfectly in its virtual folder on IIS 6 (win2003). I made an exact copy of the app that points to another database of the same type in a new website on the...
1
by: jimgym1989 | last post by:
I dont get it..why is the error: Exception in thread "main" java.util.InputMismatchException this is my code /** * @(#)textFileRead.java * * * @author * @version 1.00 2008/10/17 */
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
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: 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: 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$) { } ...
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
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...

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.