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

ASP.NET perfromance

I have a very simple aspx page:
ONE pushbutton.

On my home network I see that the Browser does one trip when I click on the
button
but testing from the Internet discovers that the Browser makes 4-5 trips.
I wouldn't care if that wouldn't take a log time.
Is there a way to encrease performance of a such simple web page?

Thanks
Nov 18 '05 #1
6 859
Code?

Karl

"Mark Goldin" <ma********@comcast.net> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...
I have a very simple aspx page:
ONE pushbutton.

On my home network I see that the Browser does one trip when I click on the button
but testing from the Internet discovers that the Browser makes 4-5 trips.
I wouldn't care if that wouldn't take a log time.
Is there a way to encrease performance of a such simple web page?

Thanks

Nov 18 '05 #2
"Mark Goldin" <ma********@comcast.net> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...
I have a very simple aspx page:
ONE pushbutton.

On my home network I see that the Browser does one trip when I click on the button
but testing from the Internet discovers that the Browser makes 4-5 trips.
I wouldn't care if that wouldn't take a log time.
Is there a way to encrease performance of a such simple web page?


You've forgotten to include one fundamental piece of information in your
post... :-)
Nov 18 '05 #3
What makes you say that there are 4-5 trips taking place? With the push of
one button, one trip occurs (unless, of course, your code for that button
makes other trips occur - but that is not automatically the case). We need
to see your code.
"Mark Goldin" <ma********@comcast.net> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...
I have a very simple aspx page:
ONE pushbutton.

On my home network I see that the Browser does one trip when I click on
the
button
but testing from the Internet discovers that the Browser makes 4-5 trips.
I wouldn't care if that wouldn't take a log time.
Is there a way to encrease performance of a such simple web page?

Thanks

Nov 18 '05 #4
The Response.Redirect method forces two trips to the server.

I'd also like to know the secret. Apparently you do not know
how to evaluate the code yet somehow you know how to evaluate
its performance to somehow determine how many trips are being
made to the server. I am puzzled.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Mark Goldin" <ma********@comcast.net> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...
I have a very simple aspx page:
ONE pushbutton.

On my home network I see that the Browser does one trip when I click on the button
but testing from the Internet discovers that the Browser makes 4-5 trips.
I wouldn't care if that wouldn't take a log time.
Is there a way to encrease performance of a such simple web page?

Thanks

Nov 18 '05 #5
What response.redirect? The OP didn't say anything about that?
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:OP****************@TK2MSFTNGP10.phx.gbl...
The Response.Redirect method forces two trips to the server.

I'd also like to know the secret. Apparently you do not know
how to evaluate the code yet somehow you know how to evaluate
its performance to somehow determine how many trips are being
made to the server. I am puzzled.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Mark Goldin" <ma********@comcast.net> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...
I have a very simple aspx page:
ONE pushbutton.

On my home network I see that the Browser does one trip when I click on

the
button
but testing from the Internet discovers that the Browser makes 4-5 trips.
I wouldn't care if that wouldn't take a log time.
Is there a way to encrease performance of a such simple web page?

Thanks


Nov 18 '05 #6
I know nothing was said about that but when trying to read
the tea leaves I put it on the table anyway.
--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
"Scott M." <s-***@nospam.nospam> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
What response.redirect? The OP didn't say anything about that?
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:OP****************@TK2MSFTNGP10.phx.gbl...
The Response.Redirect method forces two trips to the server.

I'd also like to know the secret. Apparently you do not know
how to evaluate the code yet somehow you know how to evaluate
its performance to somehow determine how many trips are being
made to the server. I am puzzled.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Mark Goldin" <ma********@comcast.net> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...
I have a very simple aspx page:
ONE pushbutton.

On my home network I see that the Browser does one trip when I click on

the
button
but testing from the Internet discovers that the Browser makes 4-5 trips. I wouldn't care if that wouldn't take a log time.
Is there a way to encrease performance of a such simple web page?

Thanks



Nov 18 '05 #7

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

Similar topics

2
by: peter | last post by:
Hi, I have a dedicated server running Win 2003, IIS 6, and ASP.net 1.1 I have 8 ip addresses and under the Default Web Site I created a virtual directory called "test" so I can test my app. ...
2
by: Sven Thorsen | last post by:
I have a Web Service with a method that handles file uploads. The file is sent as a DIME attachment to the SOAP request. The post is successful, the file is received and the correct response is...
9
by: Nikolay Petrov | last post by:
I have a couple of byte arrays. What is the most efficient way to combine them? After combining they will go in a network stream. thanks
3
by: psbasha | last post by:
Hi, Is there any tools available to check the Perfromance /Quality of the applications developed using Python?.Any quality tools helps in testing the application. Thanks in advance Shakil
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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...
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.