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?

Answers were Sorted based on User's Feedback



In asp.net, if a webpage seems too slow to load completely in th ebrowser. In this case what are t..

Answer / 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

In asp.net, if a webpage seems too slow to load completely in th ebrowser. In this case what are t..

Answer / renjith tn

Mr..Hashim....Ur answer is actually right...But I mean it in the application or server side, what we do as a developer.


I posted a new and clear question...So no need to post answer to this question any more........

Is This Answer Correct ?    0 Yes 0 No

In asp.net, if a webpage seems too slow to load completely in th ebrowser. In this case what are t..

Answer / hashim

clear the cookies&histrory of your browser and try.....

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

What is the Impprsonation?and what is the importence of that?

3 Answers   eXensys,


How do cookies work?

0 Answers  


In a page there is dropdown list with the name of the cities like Bangalore,Pune,Chennai,Other and a text box that would enable the user to enter the name of the city if other is selected. How to enable validation on the text box if other is selected

1 Answers  


How would you turn off cookies on one page of your website?

0 Answers  


When do you set "<IDENTITY impersonate="true" />" ?

1 Answers  






Can we use MSSql as backend in asp.net...if yes then How.?

0 Answers   MCN Solutions,


what is diffrent between asp & asp.net

2 Answers  


What is the difference between an htmlinputcheckbox control and an htmlinputradiobutton control?

0 Answers  


What is a session in programming?

0 Answers  


Explain what is event bubbling?

0 Answers  


What does setting a control's EnableViewState property to false accomplish?

1 Answers  


Describe the difference between inline and code behind?

2 Answers  


Categories