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
Explain asp.net mvc request life cycle? : asp.net mvc
Can you use Web API with ASP.NET Web Form?
Explain Life cycle of ASP.NET page when a request is made.
What are the main advantages of using asp.net?
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
How does viewstate work?
What is simple data binding?
Can the dictionary object be created in client?s scope ?
In a page I have gridview with options of select and delete using hyperlink when I am selecting any one of then it has to open another page how can it?
What is the difference between dynamic SGA and static SGA?
Define secured sockets layer.
Describe how to implement globalization and localization in the use interface in .net.
What is a session http?
Explain about asp.net state management?
Why is asp.net so popular?