alternative to button....

  • Thread starter Thread starter Nish
  • Start date Start date
N

Nish

Since my asp.net application is very slow I would like to change the server
control button to something else....
Is there any alternative like hyperlink..... ? I am using .Net Framework
1.1. I am just using the clicked event of the button.
Thanks,
Nish.
 
Hi Nish:

I'm pretty sure you won't see a dramatic performance improvement after
changing one Button control into a hyperlink. Perhaps you could enable
tracing for the page and see where most of the time is going (@ Page
Trace="true").
 
Nish, not sure that i follow your question complete. What
is the button used for? and what do you intend to do by
replacing this with hyperlink? Why do you feel that this
will speed up the application?
 
By changing the button it may not improve the performance dramatically. But
atleast it will help to some extent.
I am so desparate that I am looking for all possible places where I can
improve the performance.
nish
 
Hi nish:

I understand you are desperate to improve performance, but unless you
take some measurements and see where the time is being spent, you
might be wasting time. Perform some tracing and profiling to uncover
the hot spots that are slowing down the application.
 
Back
Top