Go Back   TechArena Community > Software > Software Development
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , , , , ,

Sponsored Links



Guidelines for high performance website in ASP.Net

Software Development


Reply
 
Thread Tools Search this Thread
  #1  
Old 06-02-2010
Member
 
Join Date: Feb 2010
Posts: 710
Guidelines for high performance website in ASP.Net

Actually I am a new bee to the development environment of this visual web developer. Normally I work on the ASP.Net that is my base for developing the website. I have created three to four websites but the performance of these websites are not up to the mark. Then I thought that there might be a problem in the way I am developing the website in ASP.Net. So I need to know the guide lines for developing a high performance website in ASP.Net.
Reply With Quote
  #2  
Old 06-02-2010
Modifier's Avatar
Member
 
Join Date: Jan 2008
Posts: 1,502
Re: Guidelines for high performance website in ASP.Net

For designing a high performance website the most important thing is the way you connect to the database through the ASP.net coding. For that matter you have to take care about the round trip you need for doing a specific task. The maximum number of round trip will reduce the performance level of the website, hence you must complete the require task in the minimum possible round trips.
Reply With Quote
  #3  
Old 06-02-2010
MindSpace's Avatar
Member
 
Join Date: Feb 2008
Posts: 1,832
Re: Use paged data access

If you need to display a lot of amount of data through the use of data grid then you must use the paged data access for that purpose. I will try to explain it with example. Suppose you have to display more than 1000 records to your client then one thing is for sure that your client cannot see the whole 1000 thousands records at a time. The maximum record your client can see are 25. So it will be a better idea to go for page data access which can load faster with the 25 record compare to the 1000 records.
Reply With Quote
  #4  
Old 06-02-2010
opaper's Avatar
Member
 
Join Date: May 2008
Posts: 2,362
Re: Connection Pooling is also a good option

If you facing the performance problem of your website because of the connection to the SQL server, then connection pooling is the best solution for it. One more thing using the TCP (Transmission Control Protocol) connection for that purpose is really expensive. The same performance can be achieved using the connection pooling. Connection pooling allow the application to reuse the connection which is once established to database.
__________________
The FIFA Manager 2009 PC Game
Reply With Quote
  #5  
Old 06-02-2010
Reegan's Avatar
Member
 
Join Date: Oct 2005
Posts: 2,299
Re: Guidelines for high performance website in ASP.Net

For increasing the performance using the gzip compression is a better idea. Because this compression can reduce the number of bytes send to the server. Due to this your web page will load faster and indirectly this will help increasing the performance level. The advantage of using this is that any time you need you can decrease the amount of data returned for serving the more request per second.
Reply With Quote
  #6  
Old 06-02-2010
Zecho's Avatar
Member
 
Join Date: May 2008
Posts: 2,267
Re: Guidelines for high performance website in ASP.Net

Using the server control view state will definitely increase the performance level of your website. Because it is very powerful capability that allows the state of the page to be persisted with the client. What more this does not requires cookies or the server memory for this purpose. By default viewstate property is set to true but if do not want it to be enabled you can do the same by disabling the viewstate property. If you want to disable whole page property you do that by using the below command.
Reply With Quote
Reply

  TechArena Community > Software > Software Development


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Guidelines for high performance website in ASP.Net"
Thread Thread Starter Forum Replies Last Post
Laptop with high performance in 40K singham2011 Portable Devices 5 31-08-2011 12:21 AM
Bounce Rate of my Website is very high Aideen Technology & Internet 4 19-01-2011 06:32 AM
How to check the performance of a website? Efigenio Technology & Internet 5 07-03-2010 12:47 AM
High performance for ppc ads Jaishree Off Topic Chat 3 11-07-2009 11:31 AM
Samsung, incoming new high-performance SSD shilong Portable Devices 3 08-01-2009 12:15 PM


All times are GMT +5.5. The time now is 12:10 PM.