473,698 Members | 2,084 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

effective ways to speed up ASP.NET apps?

Hi all,

I was wondering if anyone could point me in the right direction of speeding
up an ASP.Net application.
We converted an old app that ran lightning fast in classic ASP, but now,
(after touting how .Net was going to make things run faster) we have an
application that is unbearably slow (4X slower than the ASP app). Not only
that, it gobbles up a tremendous amount of memory, and makes up to 20
connections to the SQL database at any one time.
I expected the new app to run slower as we had no middle tier before (calls
were made directly to the SQL box and paging was done with stored procedures
instead of ADO), but this is ridiculous. I am relatively new at this, so I
expect to not be as efficient in doing code-behinds and what-not, but most
books I've seen do not have examples at any advanced level and code examples
are too simple to really show how to effectively use resources and run a
speedy app (which is much more important in this case).
Any ideas on this?

TIA
Dave
Nov 18 '05 #1
8 1388
At first sight it looks like there is a problem with connection handling.
Make sure you close connections when they are no more needed. You could have
also a simailar problem with other objects (keeping a reference to them will
prevent to release them and will consume more and more memory).

Other than that, one of the first step is likely to time a typical page to
find out which section goes so slow...

Patrice
"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> a écrit dans le
message de news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
Hi all,

I was wondering if anyone could point me in the right direction of speeding up an ASP.Net application.
We converted an old app that ran lightning fast in classic ASP, but now,
(after touting how .Net was going to make things run faster) we have an
application that is unbearably slow (4X slower than the ASP app). Not only that, it gobbles up a tremendous amount of memory, and makes up to 20
connections to the SQL database at any one time.
I expected the new app to run slower as we had no middle tier before (calls were made directly to the SQL box and paging was done with stored procedures instead of ADO), but this is ridiculous. I am relatively new at this, so I expect to not be as efficient in doing code-behinds and what-not, but most
books I've seen do not have examples at any advanced level and code examples are too simple to really show how to effectively use resources and run a
speedy app (which is much more important in this case).
Any ideas on this?

TIA
Dave

Nov 18 '05 #2
The guidelines for optimizing ASP.Net apps are the same as the guidelines
for optimizing any other type of application. Perhaps that is why you
haven't seen any specific examples. There isn't any "silver bullet" to
optimization. It's a matter of understanding the technologies more deeply,
and applying the knowledge to your app in such a way as to get the best
performance out of it. It involves both code and architecture
considerations.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message
news:#i******** *****@TK2MSFTNG P10.phx.gbl...
Hi all,

I was wondering if anyone could point me in the right direction of speeding up an ASP.Net application.
We converted an old app that ran lightning fast in classic ASP, but now,
(after touting how .Net was going to make things run faster) we have an
application that is unbearably slow (4X slower than the ASP app). Not only that, it gobbles up a tremendous amount of memory, and makes up to 20
connections to the SQL database at any one time.
I expected the new app to run slower as we had no middle tier before (calls were made directly to the SQL box and paging was done with stored procedures instead of ADO), but this is ridiculous. I am relatively new at this, so I expect to not be as efficient in doing code-behinds and what-not, but most
books I've seen do not have examples at any advanced level and code examples are too simple to really show how to effectively use resources and run a
speedy app (which is much more important in this case).
Any ideas on this?

TIA
Dave

Nov 18 '05 #3
Dave,

look at the following tool

Red Gate Software
sa***@red-gate.com
www.red-gate.com
ANTS Profiler is a code profiling tool designed to profile ASP.NET
applications. ANTS Profiler:

It analyzes your runtime.
Afterwards the tool tells you how many time which method is called and how
long it took in total.

Often you see that some methods take a long time to perform or some methods
are called many times.
So, if you call a method 100 times and it only takes .005 second to perform
(for instance a SQL statement call)
the delay for the page is 5 seconds.

In this way we discovered that using Rowfilter on a DataView took a long
time to perform its work. And because we used it a number of times in a page
the delay was very noticable. When you know where it hurts you can make an
alternitive solution.

So, when you use Ants Profiler you can optimize the bottleneck(s) in stead
opimizing in general.

By the way, fast applications start by analizing the Do's and Dont's.

With kind regards,
Ben
"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:ed******** ******@TK2MSFTN GP10.phx.gbl...
The guidelines for optimizing ASP.Net apps are the same as the guidelines
for optimizing any other type of application. Perhaps that is why you
haven't seen any specific examples. There isn't any "silver bullet" to
optimization. It's a matter of understanding the technologies more deeply,
and applying the knowledge to your app in such a way as to get the best
performance out of it. It involves both code and architecture
considerations.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message
news:#i******** *****@TK2MSFTNG P10.phx.gbl...
Hi all,

I was wondering if anyone could point me in the right direction of speeding
up an ASP.Net application.
We converted an old app that ran lightning fast in classic ASP, but now,
(after touting how .Net was going to make things run faster) we have an
application that is unbearably slow (4X slower than the ASP app). Not

only
that, it gobbles up a tremendous amount of memory, and makes up to 20
connections to the SQL database at any one time.
I expected the new app to run slower as we had no middle tier before

(calls
were made directly to the SQL box and paging was done with stored

procedures
instead of ADO), but this is ridiculous. I am relatively new at this, so I
expect to not be as efficient in doing code-behinds and what-not, but

most books I've seen do not have examples at any advanced level and code

examples
are too simple to really show how to effectively use resources and run a
speedy app (which is much more important in this case).
Any ideas on this?

TIA
Dave


Nov 18 '05 #4
Thanks for the input.
The profiler sounds like what I need as I feel I am correctly closing data
connections and so forth. I really need to know why there is a 3-4 second
pause after every mouse click, and why I can see the screen slowly redraw.
It appears my user controls are what could be slowing it down. I would blame
datagrids for a lot (on the admin side where it is no prob) of slow down,
but my index page is slow too!

"Ben de Vette" <Be************ ****@profiler.n l> wrote in message
news:10******** *****@corp.supe rnews.com...
Dave,

look at the following tool

Red Gate Software
sa***@red-gate.com
www.red-gate.com
ANTS Profiler is a code profiling tool designed to profile ASP.NET
applications. ANTS Profiler:

It analyzes your runtime.
Afterwards the tool tells you how many time which method is called and how
long it took in total.

Often you see that some methods take a long time to perform or some methods are called many times.
So, if you call a method 100 times and it only takes .005 second to perform (for instance a SQL statement call)
the delay for the page is 5 seconds.

In this way we discovered that using Rowfilter on a DataView took a long
time to perform its work. And because we used it a number of times in a page the delay was very noticable. When you know where it hurts you can make an
alternitive solution.

So, when you use Ants Profiler you can optimize the bottleneck(s) in stead
opimizing in general.

By the way, fast applications start by analizing the Do's and Dont's.

With kind regards,
Ben
"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:ed******** ******@TK2MSFTN GP10.phx.gbl...
The guidelines for optimizing ASP.Net apps are the same as the guidelines
for optimizing any other type of application. Perhaps that is why you
haven't seen any specific examples. There isn't any "silver bullet" to
optimization. It's a matter of understanding the technologies more deeply, and applying the knowledge to your app in such a way as to get the best
performance out of it. It involves both code and architecture
considerations.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message
news:#i******** *****@TK2MSFTNG P10.phx.gbl...
Hi all,

I was wondering if anyone could point me in the right direction of

speeding
up an ASP.Net application.
We converted an old app that ran lightning fast in classic ASP, but now, (after touting how .Net was going to make things run faster) we have an application that is unbearably slow (4X slower than the ASP app). Not

only
that, it gobbles up a tremendous amount of memory, and makes up to 20
connections to the SQL database at any one time.
I expected the new app to run slower as we had no middle tier before

(calls
were made directly to the SQL box and paging was done with stored

procedures
instead of ADO), but this is ridiculous. I am relatively new at this,

so
I
expect to not be as efficient in doing code-behinds and what-not, but

most books I've seen do not have examples at any advanced level and code

examples
are too simple to really show how to effectively use resources and run a speedy app (which is much more important in this case).
Any ideas on this?

TIA
Dave



Nov 18 '05 #5
most likely you have abused the viewstate size (common with grids). in ie
save your page to disk, and check the size. recode your site to not use
viewstate.

-- bruce (sqlwork.com)


"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message
news:#J******** ******@tk2msftn gp13.phx.gbl...
Thanks for the input.
The profiler sounds like what I need as I feel I am correctly closing data
connections and so forth. I really need to know why there is a 3-4 second
pause after every mouse click, and why I can see the screen slowly redraw.
It appears my user controls are what could be slowing it down. I would blame datagrids for a lot (on the admin side where it is no prob) of slow down,
but my index page is slow too!

"Ben de Vette" <Be************ ****@profiler.n l> wrote in message
news:10******** *****@corp.supe rnews.com...
Dave,

look at the following tool

Red Gate Software
sa***@red-gate.com
www.red-gate.com
ANTS Profiler is a code profiling tool designed to profile ASP.NET
applications. ANTS Profiler:

It analyzes your runtime.
Afterwards the tool tells you how many time which method is called and how
long it took in total.

Often you see that some methods take a long time to perform or some methods
are called many times.
So, if you call a method 100 times and it only takes .005 second to

perform
(for instance a SQL statement call)
the delay for the page is 5 seconds.

In this way we discovered that using Rowfilter on a DataView took a long
time to perform its work. And because we used it a number of times in a

page
the delay was very noticable. When you know where it hurts you can make an alternitive solution.

So, when you use Ants Profiler you can optimize the bottleneck(s) in stead opimizing in general.

By the way, fast applications start by analizing the Do's and Dont's.

With kind regards,
Ben
"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:ed******** ******@TK2MSFTN GP10.phx.gbl...
The guidelines for optimizing ASP.Net apps are the same as the guidelines for optimizing any other type of application. Perhaps that is why you
haven't seen any specific examples. There isn't any "silver bullet" to
optimization. It's a matter of understanding the technologies more deeply, and applying the knowledge to your app in such a way as to get the best performance out of it. It involves both code and architecture
considerations.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message news:#i******** *****@TK2MSFTNG P10.phx.gbl...
> Hi all,
>
> I was wondering if anyone could point me in the right direction of
speeding
> up an ASP.Net application.
> We converted an old app that ran lightning fast in classic ASP, but now, > (after touting how .Net was going to make things run faster) we have an > application that is unbearably slow (4X slower than the ASP app). Not only
> that, it gobbles up a tremendous amount of memory, and makes up to 20 > connections to the SQL database at any one time.
> I expected the new app to run slower as we had no middle tier before
(calls
> were made directly to the SQL box and paging was done with stored
procedures
> instead of ADO), but this is ridiculous. I am relatively new at
this, so
I
> expect to not be as efficient in doing code-behinds and what-not,
but most
> books I've seen do not have examples at any advanced level and code
examples
> are too simple to really show how to effectively use resources and

run a > speedy app (which is much more important in this case).
> Any ideas on this?
>
> TIA
> Dave
>
>



Nov 18 '05 #6
You should consider using a .NET profiling tool. This will help you
identify where the bottle necks are in the application.

Definitely check the database code to ensure that connections are
being closed.
http://xpcoder.net


"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message news:<#i******* ******@TK2MSFTN GP10.phx.gbl>.. .
Hi all,

I was wondering if anyone could point me in the right direction of speeding
up an ASP.Net application.
We converted an old app that ran lightning fast in classic ASP, but now,
(after touting how .Net was going to make things run faster) we have an
application that is unbearably slow (4X slower than the ASP app). Not only
that, it gobbles up a tremendous amount of memory, and makes up to 20
connections to the SQL database at any one time.
I expected the new app to run slower as we had no middle tier before (calls
were made directly to the SQL box and paging was done with stored procedures
instead of ADO), but this is ridiculous. I am relatively new at this, so I
expect to not be as efficient in doing code-behinds and what-not, but most
books I've seen do not have examples at any advanced level and code examples
are too simple to really show how to effectively use resources and run a
speedy app (which is much more important in this case).
Any ideas on this?

TIA
Dave

Nov 18 '05 #7
I would agree with what Bruce suggests - use viewstate with care, it puts a
lot of extra traffic across the wire and can bloat an already busy page. If
you aint accepting data turn it off as the browser still has to recieve it
even if you dont use it.

Also, make use of page and kernel caching wherever you can. It can have a
massive performance improvement if ued correctly.
--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
"bruce barker" <no***********@ safeco.com> wrote in message
news:uX******** ******@TK2MSFTN GP10.phx.gbl...
most likely you have abused the viewstate size (common with grids). in ie
save your page to disk, and check the size. recode your site to not use
viewstate.

-- bruce (sqlwork.com)


"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message
news:#J******** ******@tk2msftn gp13.phx.gbl...
Thanks for the input.
The profiler sounds like what I need as I feel I am correctly closing data
connections and so forth. I really need to know why there is a 3-4 second pause after every mouse click, and why I can see the screen slowly redraw. It appears my user controls are what could be slowing it down. I would blame
datagrids for a lot (on the admin side where it is no prob) of slow down, but my index page is slow too!

"Ben de Vette" <Be************ ****@profiler.n l> wrote in message
news:10******** *****@corp.supe rnews.com...
Dave,

look at the following tool

Red Gate Software
sa***@red-gate.com
www.red-gate.com
ANTS Profiler is a code profiling tool designed to profile ASP.NET
applications. ANTS Profiler:

It analyzes your runtime.
Afterwards the tool tells you how many time which method is called and how long it took in total.

Often you see that some methods take a long time to perform or some

methods
are called many times.
So, if you call a method 100 times and it only takes .005 second to

perform
(for instance a SQL statement call)
the delay for the page is 5 seconds.

In this way we discovered that using Rowfilter on a DataView took a long time to perform its work. And because we used it a number of times in a page
the delay was very noticable. When you know where it hurts you can
make an alternitive solution.

So, when you use Ants Profiler you can optimize the bottleneck(s) in stead opimizing in general.

By the way, fast applications start by analizing the Do's and Dont's.

With kind regards,
Ben
"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:ed******** ******@TK2MSFTN GP10.phx.gbl...
> The guidelines for optimizing ASP.Net apps are the same as the

guidelines
> for optimizing any other type of application. Perhaps that is why
you > haven't seen any specific examples. There isn't any "silver bullet" to > optimization. It's a matter of understanding the technologies more

deeply,
> and applying the knowledge to your app in such a way as to get the best > performance out of it. It involves both code and architecture
> considerations.
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> Big things are made up
> of lots of little things.
>
> "Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message > news:#i******** *****@TK2MSFTNG P10.phx.gbl...
> > Hi all,
> >
> > I was wondering if anyone could point me in the right direction of
> speeding
> > up an ASP.Net application.
> > We converted an old app that ran lightning fast in classic ASP, but now,
> > (after touting how .Net was going to make things run faster) we
have
an
> > application that is unbearably slow (4X slower than the ASP app).

Not > only
> > that, it gobbles up a tremendous amount of memory, and makes up to 20 > > connections to the SQL database at any one time.
> > I expected the new app to run slower as we had no middle tier
before > (calls
> > were made directly to the SQL box and paging was done with stored
> procedures
> > instead of ADO), but this is ridiculous. I am relatively new at

this, so
> I
> > expect to not be as efficient in doing code-behinds and what-not, but most
> > books I've seen do not have examples at any advanced level and code > examples
> > are too simple to really show how to effectively use resources and

run
a
> > speedy app (which is much more important in this case).
> > Any ideas on this?
> >
> > TIA
> > Dave
> >
> >
>
>



Nov 18 '05 #8
Looks like you have a server side event on each click ? A possible option is
to process what is doable without two muich problme client side (for example
having some JavaScript that show/hide a part of the page will avoid hitting
the server again to show/hide a section).

A bit strange though that the page needs 3/4 s to refresh itself...

Good luck

Patrice
"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> a écrit dans le
message de news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Thanks for the input.
The profiler sounds like what I need as I feel I am correctly closing data
connections and so forth. I really need to know why there is a 3-4 second
pause after every mouse click, and why I can see the screen slowly redraw.
It appears my user controls are what could be slowing it down. I would blame datagrids for a lot (on the admin side where it is no prob) of slow down,
but my index page is slow too!

"Ben de Vette" <Be************ ****@profiler.n l> wrote in message
news:10******** *****@corp.supe rnews.com...
Dave,

look at the following tool

Red Gate Software
sa***@red-gate.com
www.red-gate.com
ANTS Profiler is a code profiling tool designed to profile ASP.NET
applications. ANTS Profiler:

It analyzes your runtime.
Afterwards the tool tells you how many time which method is called and how
long it took in total.

Often you see that some methods take a long time to perform or some methods
are called many times.
So, if you call a method 100 times and it only takes .005 second to

perform
(for instance a SQL statement call)
the delay for the page is 5 seconds.

In this way we discovered that using Rowfilter on a DataView took a long
time to perform its work. And because we used it a number of times in a

page
the delay was very noticable. When you know where it hurts you can make an alternitive solution.

So, when you use Ants Profiler you can optimize the bottleneck(s) in stead opimizing in general.

By the way, fast applications start by analizing the Do's and Dont's.

With kind regards,
Ben
"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:ed******** ******@TK2MSFTN GP10.phx.gbl...
The guidelines for optimizing ASP.Net apps are the same as the guidelines for optimizing any other type of application. Perhaps that is why you
haven't seen any specific examples. There isn't any "silver bullet" to
optimization. It's a matter of understanding the technologies more deeply, and applying the knowledge to your app in such a way as to get the best performance out of it. It involves both code and architecture
considerations.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Dave" <dave(delete_th is)@miraclecatD ELETETHISTOO.co m> wrote in message news:#i******** *****@TK2MSFTNG P10.phx.gbl...
> Hi all,
>
> I was wondering if anyone could point me in the right direction of
speeding
> up an ASP.Net application.
> We converted an old app that ran lightning fast in classic ASP, but now, > (after touting how .Net was going to make things run faster) we have an > application that is unbearably slow (4X slower than the ASP app). Not only
> that, it gobbles up a tremendous amount of memory, and makes up to 20 > connections to the SQL database at any one time.
> I expected the new app to run slower as we had no middle tier before
(calls
> were made directly to the SQL box and paging was done with stored
procedures
> instead of ADO), but this is ridiculous. I am relatively new at
this, so
I
> expect to not be as efficient in doing code-behinds and what-not,
but most
> books I've seen do not have examples at any advanced level and code
examples
> are too simple to really show how to effectively use resources and

run a > speedy app (which is much more important in this case).
> Any ideas on this?
>
> TIA
> Dave
>
>



Nov 18 '05 #9

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

Similar topics

18
2034
by: HerrLucifer | last post by:
I am each day becoming more and more addicted to the new .Net framework because of its cool RAD facilities. However, performance and speed is extremely important for my application development. I have done many various tests to compare the performance speed of applications written in C++ 6.0 V.S. the same ones in VB.Net or VC#.Net . The result were quiet the same( i am not sure if i have go the right path!). But I know C++ exe files use...
19
3192
by: Davey | last post by:
Which is typically faster - a Java server application or a C++ server application?
2
2052
by: chrisben | last post by:
Hi All Has anyone done any experiment on comparison between C++ and C# on socket rec/send speed Conditions in Windows system, same CPU for senders or receivers. Can you see how much faster a C++ app can send/rec messages than a C# app I am working on some real time apps with heave traffic. I am not sure whether .NET can handle it at all Thanks a lo Chri
4
1361
by: Joanna Carter \(TeamB\) | last post by:
Hi gurus. Does anyone have any experience as to whether .NET 2.0 will be any faster executing than .NET 1.1 ? We are looking at starting a new project in .NET and are getting feedback from other developers that they have found problems with apparent speed of apps being slower than their clients were expecting having come from Win32 Delphi apps.
7
1709
by: Frank Rizzo | last post by:
Is it me or is the speed of VS2005 actually slower than VS2003? The startup is pretty bad - even though I changed VS to display an empty environment. When I create a new form and want to change its size: while I am resizing, an hour glass comes up for a few seconds. There a lot of other slowdowns all over the system. It seems like it the hard drive kicks in really hard. Now I did have the VS2005 beta installed, but I uninstalled it...
4
1590
by: ThunderMusic | last post by:
Hi, Is it possible to speed up the build for ASP.NET 2.0 apps? Each time I click build (or play for debug), it takes forever to build.... Is is possible to speed up this process? it was correct in ASP.NET 1.1, but now it's unacceptable... Thanks a lot.. ThunderMusic
8
1989
by: arnuld | last post by:
Hi all, I have come to a point where I can comprehend C++ code much better. I will finish C++ Primer 4/e within next few days. Right now I am feeling the need to have have coding standards when I write programs and I feel I must apply some better ways to design my code e.g. all of my the programmers at my college use to write this code: for( int i=0; i <= 10; ++i ) {
47
1417
by: Mike Williams | last post by:
I'm trying to decide whether or not I need to move to a different development tool and I'm told that VB6 code, when well written, can be ten times faster than vb.net, but that if its badly written it can be ten times slower. Is that correct? I'm quite competent at writing code myself and so most of my code will be quite well written, and I don't want to move to vb.net if well written VB6 code is ten times faster. Have I been told the...
3
1033
by: Sendil kumar | last post by:
Hi All, I'm a developer of C++. Recently I was moved to QA,because of in-adequate resource, to test the WCF functionalities that have been implemented in my new project. I'm new to QA role as weel as I'm also learning about the WCF. My ultimate goal is to do an effective testing on WCF and to make sure that the product never got released with bugs. So, can any one help me to do effective testing on WCF, the things that I need to pay more...
0
8672
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
9021
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...
1
8892
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7712
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...
0
5860
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
4614
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3038
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
2
2323
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
1998
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.