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
What are demand-paging and pre-paging?
What is difference between inproc and outproc?
How to create a db connection at one place/page so that we can use that connection for all pages/forms/windows.what r the steps ned to be performed if question not clear,let me know
How to implement globalization and localization in the use interface in .net.
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
What is the difference between session and viewstate in asp.net?
What are the ways to sending the data in ASP.NET page?
What is the default Orientation property in a Menu control?
Why mvc is faster than asp.net? : Asp.Net MVC
In asp.net, how can you validate drop down box?
How do you handle server controls?
How can you apply a theme to your asp.net application?
Why and where this web.config file is used?
What kind of data we can store in viewstate?
Which asp.net objects encapsulate the state of the client and the browser?