How to reduce the Page size in asp.net?
Answers were Sorted based on User's Feedback
Answer / pandi g s
1. Use ordinary HTML control instead of Server control if
used for display purpose
2. Disable the vieestate of the control if controls need
not to retain values across postback
3. Use data repeater instead of gridview since repeater
render less HTML
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sagnikmukh
1) enableviewstate="false"
2) Reduce image size
3) Use external CSS
4) Use external JavaScript
5) GZIP & Minimize your assets
6)Use HTTP compression
7)Use light page layout
some ref: links :
http://www.dotnetfunda.com/articles/article793-reduce-aspnet-page-output-size-.aspx
http://www.codeproject.com/KB/aspnet/10ASPNetPerformance.aspx
http://www.dotnetfunda.com/articles/article793-reduce-aspnet-page-output-size-.aspx
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / kinjal panchal
when u put image in your background then put it in a repeat
form.
Is This Answer Correct ? | 0 Yes | 1 No |
What are the various ways to send content from one page to another?
What is view state and how this can be done and was this there in asp ?
3 Answers Accenture, BirlaSoft, CTS, Mphasis,
Define xmlvalidatingreader class.
What is the equivalent of date() and time() in asp.net?
Explain different authentication modes in asp.net?
Describe the sequence of action takes place on the server when ASP.NET application starts first time?
7. Do you have reference list?
4 Answers CMC, Hotel Jobs, Mannar Company, Qatar Petroleums, Swatz Oils,
Which is better asp.net or php?
Explain the advantages of passport authentication.
version information of assembly consist of _________ values.
You are planning the deployment of an ASP.NET application. The application uses a Visual Studio .NET component named DataAccess that will be shared with other applications on your Web server. You are using Visual Studio .NET to create a Windows Installer package. You need to deploy DataAccess and the ASP.NET application so that they can be uninstalled later of necessary. What should you do? A . Create a setup project for DataAccess. Add the ASP.NET application in a custom action. B . Create a setup project for the ASP.NET application. Create another setup project for DataAccess. C . Create a Web setup project for the ASP.NET application. Add a project output for DataAccess. D . Create a Web setup project for the ASP.NET application. Add a merge module for DataAccess.
Your manager has asked you to describe what you would use application variables for. What statement best describes the use of application variables? a) Application Variables are used to keep state for each connected user. b) Application Variables are used to keep state for the web site c) Application Variables are used to keep state for the application on the server d) Application Variables are used to keep state for all applications objects in the web site.