In asp.net, if a webpage seems too slow to load completely
in th ebrowser. In this case what are the checkings or
actions you will take to rectify the slowness or which are
the factors related to this issue? How we can trace it?
Answer Posted / indu
Strategies like avoiding unnecessay Viewstate Usage,
Unnecessay appending of stings in loops, fetching unwanted
data from database through queries like "select * from
xxxx" even you want limited fields..etc....
in the case you should be very specific like
select name,age from xxx
and use appropriate where clause in queries if applicable..
You can use handlers .. well written Handlers are quicker
than usual aspx!!
then precompile your site so it may reduce first hit user
delay!
Use caching option appropriately...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?
Explain Apache web servers ? How can you get ASP.NET running in Apache web servers - why should you do this?
Why is it preferred to not use finalize for clean up?
How to implement form based authentication in asp.net application?
What’s the use of “GLOBAL.ASAX” file?
What are the benefits of view state?
What is the extension of master page in asp.net?
how to write html code with ssl
Contrast oop and soa. What are tenets of each16. How does the xmlserializer work? What acl permissions does a process using it require?
Can the dictionary object be created in client?s scope ?
If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?
What is the compiled object?
Can we set master page as a start page?
What does passport and windows authentication mean in ASP.NET?
What are the different methods of session maintenance in asp.net?