473,756 Members | 6,482 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to keep one connection between two aspx page calls

Hi

I have asp.net programs. I used a very simple data transfer method by using
URLs

¡°First.aspx¡± contents a line to send data to the ¡°second.aspx¡± page, for
example: http://server/path/seond.apsx?data=mydata

There is a customer setting refresh rate in ¡°First.aspx¡± page.

So, if customer set refresh rate to 6 sec (mydata could be different each
time), there are more then 10 different calls (connections) to
¡°second.aspx¡± from the same ¡°first.aspx¡± page in one minute. This gave
me Error 403.9. (too many connections)

Is anyway I can keep the one connetions all the time between the two pages?

thanks
Nov 17 '05 #1
13 1897
Hello Larry:

With connection pooling in .NET you do not need to share the connection
object between web pages (though you can technically store it in the session
object). It might work better if you explicitly closed the connection after
you finished retrieving the data.

You can further read about the connection pooling on MSDN:
http://msdn.microsoft.com/library/de...taProvider.asp

HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:
Hi

I have asp.net programs. I used a very simple data transfer method by using
URLs

¡°First.aspx ¡Â± contents a line to send data to the ¡°second.aspx ¡± page, for
example: http://server/path/seond.apsx?data=mydata

There is a customer setting refresh rate in ¡°First.aspx ¡Â± page.

So, if customer set refresh rate to 6 sec (mydata could be different each
time), there are more then 10 different calls (connections) to
¡°second.aspx ¡± from the same ¡°first.aspx ¡Â± page in one minute. This gave
me Error 403.9. (too many connections)

Is anyway I can keep the one connetions all the time between the two pages?

thanks

Nov 17 '05 #2
will it be ok if I use the "connection lifetime" in my connection string?

"Server=mypc;Da tabase=mydata;U ser ID=sa;Password= ps;Trusted_Conn ection=True;
Connection Lifetime=5"

disconnect it after 6 sec.
thanks
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3D******** *************** ***********@mic rosoft.com...
Hello Larry:

With connection pooling in .NET you do not need to share the connection
object between web pages (though you can technically store it in the session object). It might work better if you explicitly closed the connection after you finished retrieving the data.

You can further read about the connection pooling on MSDN:
http://msdn.microsoft.com/library/de...us/cpguide/htm
l/cpconConnection PoolingForSQLSe rverNETDataProv ider.asp
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:
Hi

I have asp.net programs. I used a very simple data transfer method by using URLs

?¡ãFirst.aspx?¡ À contents a line to send data to the ?¡ãsecond.aspx? ¡À page, for example: http://server/path/seond.apsx?data=mydata

There is a customer setting refresh rate in ?¡ãFirst.aspx?¡ À page.

So, if customer set refresh rate to 6 sec (mydata could be different each time), there are more then 10 different calls (connections) to
?¡ãsecond.aspx? ¡À from the same ?¡ãfirst.aspx?¡ À page in one minute. This gave me Error 403.9. (too many connections)

Is anyway I can keep the one connetions all the time between the two pages?
thanks

Nov 17 '05 #3
Hello Larry,

You can certainly experiment with the Connection Lifetime values if you find
that it makes a difference. But, are you still getting the "too many
connections" error if you close the connection object directly after the
retrieval of the data is done in every page?
--
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:
will it be ok if I use the "connection lifetime" in my connection string?

"Server=mypc;Da tabase=mydata;U ser ID=sa;Password= ps;Trusted_Conn ection=True;
Connection Lifetime=5"

disconnect it after 6 sec.
thanks
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3D******** *************** ***********@mic rosoft.com...
Hello Larry:

With connection pooling in .NET you do not need to share the connection
object between web pages (though you can technically store it in the

session
object). It might work better if you explicitly closed the connection

after
you finished retrieving the data.

You can further read about the connection pooling on MSDN:

http://msdn.microsoft.com/library/de...us/cpguide/htm
l/cpconConnection PoolingForSQLSe rverNETDataProv ider.asp

HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:
Hi

I have asp.net programs. I used a very simple data transfer method by using URLs

?¡ãFirst.aspx ?¡À contents a line to send data to the ?¡ãsecond.asp x?¡À page, for example: http://server/path/seond.apsx?data=mydata

There is a customer setting refresh rate in ?¡ãFirst.aspx ?¡À page.

So, if customer set refresh rate to 6 sec (mydata could be different each time), there are more then 10 different calls (connections) to
?¡ãsecond.asp x?¡À from the same ?¡ãfirst.aspx ?¡À page in one minute. This gave me Error 403.9. (too many connections)

Is anyway I can keep the one connetions all the time between the two pages?
thanks


Nov 17 '05 #4
Trying to keep connections alive between page requests will only
excacerbate your problem. The symptoms you describe lead me to believe
that you're not closing and disposing of your connections properly.
Make sure you explicitly close all connections, and never open and
close them outside a single block of code.

Here is a typical lifecycle for one of your connections:

using (SqlConnection objConn = new SqlConnection(y ourConnectionSt ring))
{
objConn.Open();

// build your command, fill a dataset, or whatever

objConn.Close()
}

If your code is missing the using block or the .Close(), you run the
risk of it staying alive longer that you expect it to. Given your
description of the problem, I'd sat that is probably what's happening.
Good luck!

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com

Nov 17 '05 #5
I did close the connetions, please check the code.

---------------------
switch ((CommandFuncti ons)Convert.ToI nt32(xmlNode.In nerText))
{
case CommandFunction s.Select:
strSQL = CreateSqlSelect (true);
¡*
if (xdData.Documen tElement == null )
{ ¡*
if (GetConnection( ))
{
IDataReader dbDataReader = null;
try
{
GetCommand(strS QL);
dbDataReader = dbCommand.Execu teReader();
while (dbDataReader.R ead())
{¡* }
}
catch (System.Excepti on e) { ¡* }
finally
{
if ( dbDataReader != null ) dbDataReader.Cl ose();
dbDataReader = null;
CloseConnection ();
}
UpdateCacheList (xnNode.OuterXm l);
}
}
break;
case: ¡*
}
---------------------
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3E******** *************** ***********@mic rosoft.com...
Hello Larry,

You can certainly experiment with the Connection Lifetime values if you find that it makes a difference. But, are you still getting the "too many
connections" error if you close the connection object directly after the
retrieval of the data is done in every page?
--
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:
will it be ok if I use the "connection lifetime" in my connection string?
"Server=mypc;Da tabase=mydata;U ser ID=sa;Password= ps;Trusted_Conn ection=True; Connection Lifetime=5"

disconnect it after 6 sec.
thanks
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3D******** *************** ***********@mic rosoft.com...
Hello Larry:

With connection pooling in .NET you do not need to share the connection object between web pages (though you can technically store it in the

session
object). It might work better if you explicitly closed the connection

after
you finished retrieving the data.

You can further read about the connection pooling on MSDN:

http://msdn.microsoft.com/library/de...us/cpguide/htm l/cpconConnection PoolingForSQLSe rverNETDataProv ider.asp

HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:

> Hi
>
>
>
> I have asp.net programs. I used a very simple data transfer method
by using
> URLs
>
>
>
> ???First.aspx?? ¨¤ contents a line to send data to the
???second.aspx? ?¨¤ page, for
> example: http://server/path/seond.apsx?data=mydata
>
>
>
> There is a customer setting refresh rate in ???First.aspx?? ¨¤ page.
>
> So, if customer set refresh rate to 6 sec (mydata could be different

each
> time), there are more then 10 different calls (connections) to
> ???second.aspx? ?¨¤ from the same ???first.aspx?? ¨¤ page in one
minute. This gave
> me Error 403.9. (too many connections)
>
>
>
> Is anyway I can keep the one connetions all the time between the two

pages?
>
>
>
> thanks
>
>
>


Nov 17 '05 #6
Well, the code you posted looks ok to me. There is no reason that it would
cause the "too many connections" error.

Look for other possible causes:

1- The other Cases in your Select block: Do any of them do an update using
another connection object?

2- The connectionManag ement element of your machine.config and web.config
(if any)
http://msdn.microsoft.com/library/de...entelement.asp

3- The frequency of this page being hit as compared to the time that the
query takes to complete.
That is my best guess.

HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"larry" wrote:
I did close the connetions, please check the code.

---------------------
switch ((CommandFuncti ons)Convert.ToI nt32(xmlNode.In nerText))
{
case CommandFunction s.Select:
strSQL = CreateSqlSelect (true);
¡Â*
if (xdData.Documen tElement == null )
{ ¡Â*
if (GetConnection( ))
{
IDataReader dbDataReader = null;
try
{
GetCommand(strS QL);
dbDataReader = dbCommand.Execu teReader();
while (dbDataReader.R ead())
{¡Â* }
}
catch (System.Excepti on e) { ¡Â* }
finally
{
if ( dbDataReader != null ) dbDataReader.Cl ose();
dbDataReader = null;
CloseConnection ();
}
UpdateCacheList (xnNode.OuterXm l);
}
}
break;
case: ¡Â*
}
---------------------
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3E******** *************** ***********@mic rosoft.com...
Hello Larry,

You can certainly experiment with the Connection Lifetime values if you

find
that it makes a difference. But, are you still getting the "too many
connections" error if you close the connection object directly after the
retrieval of the data is done in every page?
--
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:
will it be ok if I use the "connection lifetime" in my connection string?
"Server=mypc;Da tabase=mydata;U ser ID=sa;Password= ps;Trusted_Conn ection=True; Connection Lifetime=5"

disconnect it after 6 sec.
thanks
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3D******** *************** ***********@mic rosoft.com...
> Hello Larry:
>
> With connection pooling in .NET you do not need to share the connection > object between web pages (though you can technically store it in the
session
> object). It might work better if you explicitly closed the connection
after
> you finished retrieving the data.
>
> You can further read about the connection pooling on MSDN:
>
http://msdn.microsoft.com/library/de...us/cpguide/htm l/cpconConnection PoolingForSQLSe rverNETDataProv ider.asp
>
> HTH,
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "Larry" wrote:
>
> > Hi
> >
> >
> >
> > I have asp.net programs. I used a very simple data transfer method by using
> > URLs
> >
> >
> >
> > ???First.aspx?? ¨¤ contents a line to send data to the ???second.aspx? ?¨¤ page, for
> > example: http://server/path/seond.apsx?data=mydata
> >
> >
> >
> > There is a customer setting refresh rate in ???First.aspx?? ¨¤ page.
> >
> > So, if customer set refresh rate to 6 sec (mydata could be different
each
> > time), there are more then 10 different calls (connections) to
> > ???second.aspx? ?¨¤ from the same ???first.aspx?? ¨¤ page in one minute. This gave
> > me Error 403.9. (too many connections)
> >
> >
> >
> > Is anyway I can keep the one connetions all the time between the two
pages?
> >
> >
> >
> > thanks
> >
> >
> >


Nov 17 '05 #7

"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:4C******** *************** ***********@mic rosoft.com...
Well, the code you posted looks ok to me. There is no reason that it would cause the "too many connections" error.

Look for other possible causes:

1- The other Cases in your Select block: Do any of them do an update using another connection object?
Yes, I did use UPDATE here in another case statement.
2- The connectionManag ement element of your machine.config and web.config
(if any)
http://msdn.microsoft.com/library/de...us/cpgenref/ht
ml/gngrfconnection managementeleme nt.asp
Please tell me what is the Max connection number? my machine.config file has
"<add name = "*" maxconnection = "2" />"
3- The frequency of this page being hit as compared to the time that the
query takes to complete.
I think it is very hard to measure. ??

That is my best guess.

HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"larry" wrote:
I did close the connetions, please check the code.

---------------------
switch ((CommandFuncti ons)Convert.ToI nt32(xmlNode.In nerText))
{
case CommandFunction s.Select:
strSQL = CreateSqlSelect (true);
?-
if (xdData.Documen tElement == null )
{ ?-
if (GetConnection( ))
{
IDataReader dbDataReader = null;
try
{
GetCommand(strS QL);
dbDataReader = dbCommand.Execu teReader();
while (dbDataReader.R ead())
{?- }
}
catch (System.Excepti on e) { ?- }
finally
{
if ( dbDataReader != null ) dbDataReader.Cl ose();
dbDataReader = null;
CloseConnection ();
}
UpdateCacheList (xnNode.OuterXm l);
}
}
break;
case: ?-
}
---------------------
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3E******** *************** ***********@mic rosoft.com...
Hello Larry,

You can certainly experiment with the Connection Lifetime values if you
find
that it makes a difference. But, are you still getting the "too many
connections" error if you close the connection object directly after
the retrieval of the data is done in every page?
--
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Larry" wrote:

> will it be ok if I use the "connection lifetime" in my connection

string?
>
> "Server=mypc;Da tabase=mydata;U ser

ID=sa;Password= ps;Trusted_Conn ection=True;
> Connection Lifetime=5"
>
> disconnect it after 6 sec.
> thanks
>
>
> "Phillip Williams" <Ph************ **@webswapp.com > wrote in message
> news:3D******** *************** ***********@mic rosoft.com...
> > Hello Larry:
> >
> > With connection pooling in .NET you do not need to share the

connection
> > object between web pages (though you can technically store it in the > session
> > object). It might work better if you explicitly closed the connection > after
> > you finished retrieving the data.
> >
> > You can further read about the connection pooling on MSDN:
> >
>

http://msdn.microsoft.com/library/de...us/cpguide/htm
> l/cpconConnection PoolingForSQLSe rverNETDataProv ider.asp
> >
> > HTH,
> > Phillip Williams
> > http://www.societopia.net
> > http://www.webswapp.com
> >
> >
> > "Larry" wrote:
> >
> > > Hi
> > >
> > >
> > >
> > > I have asp.net programs. I used a very simple data transfer method by
> using
> > > URLs
> > >
> > >
> > >
> > > ???First.aspx?? ¡§¡è contents a line to send data to the

???second.aspx? ?¡§¡è
> page, for
> > > example: http://server/path/seond.apsx?data=mydata
> > >
> > >
> > >
> > > There is a customer setting refresh rate in ???First.aspx?? ¡§¡è
page. > > >
> > > So, if customer set refresh rate to 6 sec (mydata could be different > each
> > > time), there are more then 10 different calls (connections) to
> > > ???second.aspx? ?¡§¡è from the same ???first.aspx?? ¡§¡è page in one minute.
> This gave
> > > me Error 403.9. (too many connections)
> > >
> > >
> > >
> > > Is anyway I can keep the one connetions all the time between the

two > pages?
> > >
> > >
> > >
> > > thanks
> > >
> > >
> > >
>
>
>


Nov 17 '05 #8
"larry" <la***@abc.co m> wrote in news:OsBkAwtpFH A.3960
@TK2MSFTNGP12.p hx.gbl:
3- The frequency of this page being hit as compared to the time that the
query takes to complete.


I think it is very hard to measure. ??


Run the query in Query Analyzer to see how long it takes to execute...

--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 17 '05 #9
Hello Larry,

The maxconnection number is as the name sounds. For example if your
datareader takes 20 seconds to complete and there are 3 requests on this page
during those 20 seconds then you will definitely get an error because you
only have 2 connections available for this web application. This number
should be decided upon for each application together with your database
administrator.

As for measuring the time of your query, I would simply place Response.Write
(System.DateTim e.Now.ToLongTim eString ()) before dbCommand.Execu teReader()
and after you closed the connection.

Note also the difference between the DataReader and using Dataset and
DataAdapter.Fil l method. "While a DataReader is open, the Connection is in
use exclusively by that DataReader. You will not be able to execute any
commands for the Connection, including creating another DataReader, until the
original DataReader is closed." (As quoted from MSDN) whereas the
DAtaAdapter.Fil l method shares the connection with other processes "If the
connection is closed before Fill is called, it is opened to retrieve data,
then closed. If the connection is open before Fill is called, it remains
open." (As quoted from the MSDN)

So in summary, you can try a few things to resolve this:
1- Find out the time that the DataReader keeps the connection open,
2- Increase the maxconnection number (after consulting with you DB admin)
3- Use a DataSet and DataAdapter instead of a datareader
Hope this helps.

Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"larry" wrote:

"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:4C******** *************** ***********@mic rosoft.com...
Well, the code you posted looks ok to me. There is no reason that it

would
cause the "too many connections" error.

Look for other possible causes:

1- The other Cases in your Select block: Do any of them do an update

using
another connection object?


Yes, I did use UPDATE here in another case statement.
2- The connectionManag ement element of your machine.config and web.config
(if any)

http://msdn.microsoft.com/library/de...us/cpgenref/ht
ml/gngrfconnection managementeleme nt.asp


Please tell me what is the Max connection number? my machine.config file has
"<add name = "*" maxconnection = "2" />"
3- The frequency of this page being hit as compared to the time that the
query takes to complete.


I think it is very hard to measure. ??

That is my best guess.

HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"larry" wrote:
I did close the connetions, please check the code.

---------------------
switch ((CommandFuncti ons)Convert.ToI nt32(xmlNode.In nerText))
{
case CommandFunction s.Select:
strSQL = CreateSqlSelect (true);
?-
if (xdData.Documen tElement == null )
{ ?-
if (GetConnection( ))
{
IDataReader dbDataReader = null;
try
{
GetCommand(strS QL);
dbDataReader = dbCommand.Execu teReader();
while (dbDataReader.R ead())
{?- }
}
catch (System.Excepti on e) { ?- }
finally
{
if ( dbDataReader != null ) dbDataReader.Cl ose();
dbDataReader = null;
CloseConnection ();
}
UpdateCacheList (xnNode.OuterXm l);
}
}
break;
case: ?-
}
---------------------
"Phillip Williams" <Ph************ **@webswapp.com > wrote in message
news:3E******** *************** ***********@mic rosoft.com...
> Hello Larry,
>
> You can certainly experiment with the Connection Lifetime values if you find
> that it makes a difference. But, are you still getting the "too many
> connections" error if you close the connection object directly after the > retrieval of the data is done in every page?
> --
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "Larry" wrote:
>
> > will it be ok if I use the "connection lifetime" in my connection
string?
> >
> > "Server=mypc;Da tabase=mydata;U ser
ID=sa;Password= ps;Trusted_Conn ection=True;
> > Connection Lifetime=5"
> >
> > disconnect it after 6 sec.
> > thanks
> >
> >
> > "Phillip Williams" <Ph************ **@webswapp.com > wrote in message
> > news:3D******** *************** ***********@mic rosoft.com...
> > > Hello Larry:
> > >
> > > With connection pooling in .NET you do not need to share the
connection
> > > object between web pages (though you can technically store it in the > > session
> > > object). It might work better if you explicitly closed the connection > > after
> > > you finished retrieving the data.
> > >
> > > You can further read about the connection pooling on MSDN:
> > >
> >
http://msdn.microsoft.com/library/de...us/cpguide/htm > > l/cpconConnection PoolingForSQLSe rverNETDataProv ider.asp
> > >
> > > HTH,
> > > Phillip Williams
> > > http://www.societopia.net
> > > http://www.webswapp.com
> > >
> > >
> > > "Larry" wrote:
> > >
> > > > Hi
> > > >
> > > >
> > > >
> > > > I have asp.net programs. I used a very simple data transfer method by
> > using
> > > > URLs
> > > >
> > > >
> > > >
> > > > ???First.aspx?? ¡§¡è contents a line to send data to the
???second.aspx? ?¡§¡è
> > page, for
> > > > example: http://server/path/seond.apsx?data=mydata
> > > >
> > > >
> > > >
> > > > There is a customer setting refresh rate in ???First.aspx?? ¡§¡è page. > > > >
> > > > So, if customer set refresh rate to 6 sec (mydata could be different > > each
> > > > time), there are more then 10 different calls (connections) to
> > > > ???second.aspx? ?¡§¡è from the same ???first.aspx?? ¡§¡è page in one minute.
> > This gave
> > > > me Error 403.9. (too many connections)
> > > >
> > > >
> > > >
> > > > Is anyway I can keep the one connetions all the time between the two > > pages?
> > > >
> > > >
> > > >
> > > > thanks
> > > >
> > > >
> > > >
> >
> >
> >


Nov 17 '05 #10

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

Similar topics

1
4089
by: Jim Mitchell | last post by:
I store my connect string in the viewstate and open and close the SQL database in every function or sub-routine call. Is there a better method of opening the database when the ASPX page opens and cleanly closing it when the page exits? I guess the on open part is easy, but how do I know that the page closes so that I can be sure to close out the database connection? What happens if I do a server.transfer from any of the pages? Do I...
7
2943
by: mfeingold | last post by:
I am working on a system, which among other things includes a server and a ..net control sitting in an html page and connected to the server. I ran into a couple of problems, you guys might have some insight about. 1) It takes 20 sec or so to open a tcp socket from the client to the server. It just sits in the TcpClient.conect waiting for something. When I run the same control from a windows application it connects right away and works...
4
4150
by: Nathaniel Sherman | last post by:
Alright, folks, here's the deal... I'm working on migrating a classic ASP website to an ASP.NET codebase. At the heart of the site is a MySQL database. To make sure an "in-process" program doesn't screw up the live site, I run a local IIS webserver on my XP Pro (AMD XP 2500+, 512MB DDR RAM) machine, which resides behind an XP ICS gateway on my LAN. I also have a MySQL server set up locally for development purposes.
11
1559
by: Larry | last post by:
Hi I have asp.net programs. I used a very simple data transfer method by using URLs ¡°First.aspx¡± contents a line to send data to the ¡°second.aspx¡± page, for
35
11420
by: Eric Sabine | last post by:
In my Finally block, I was using cn.close (where cn is an ADO.NET connection object, SQLConnection to be exact) and then I came across the following in some microsoft code. If Not cn Is Nothing Then CType(cn, IDisposable).Dispose() End If I have to admit, I'm not sure what happens here. Will someone explain this line of code (the middle one, not the if statement LOL) to me please?
0
9462
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9287
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9886
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8723
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7259
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6542
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5155
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5318
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3817
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.