| Boovendan's profileBoovendan's SpaceBlog | Help |
Boovendan's Space |
|||||
|
August 22 Optimize Your SiteThings I Have Done1. HTTP CompressionHTTP compression is used to compress page content from the server end. It compress HTTP requests and responses, so is a great performance improvement. My project is hosted in Windows Server 2003, and I implemented HTTP compression after reading this article. 2. Disable Possible ViewStateView State allows the page state to be persisted with the client, and it does not require cookies or server memory. View State saves data in a hidden input filed inside a page. Definitely, it is a powerful feature, but the drawback is it increases page size and memory allocation in the server. So, we should avoid View State where it is not necessary. Especially, in the case of In my application, I disabled View State for most of the controls and pages where View State is not necessary. THis made the page sizes smaller. 3. Changes in the Web.Config File
4. Implement Cache DependencyThree types of cache dependencies are available:
For my project, I used cache dependency on file. For your project, you can choose to use a dependency based on which will be the best fit for your application. Here is a nice example of cache dependency on file. 5. Optimize StylesheetsIt is important to clean up style sheets and remove unnecessary code from style sheets because it increases the load time. Remove all unnecessary classes from style sheets and try to use a single CSS file. In my project, I have used a tool to reduce the size of my stylesheet. I used this service to reduce the size of my CSS file by 20%. 6. Optimize JavaScriptI optimize my JavaScript using this service. 7. JS and CSS File PositionAccording to the advice from some good articles, I put the CSS file declaration at the top of my master page. It is recommended to call CSS files at the top of a page because the page rendering will progressively become efficient. I put JavaScript file links at the bottom of the main master file. If we put scripts at the top of the page, then it will cause unnecessarily high load times. 8. server.transfer() Instead of response.redirect()Where possible, I use 9. Client-side Script for ValidationFor page validation, I use client-side validations instead of postbacks. This way, I reduce round trips in pages. July 30 Simple Code Snippet in VB.NET
Dim nwrow as DataRow = Dataset_name.Table_name.NewRow() nwrow("col_name")=Value_tobeassigned Dataset_name.Table_name.Rows.Add(nwrow) Table_Adopter.Update(nwrow) July 21 VB.NET Code Snippets.Try TextBox1.Text = TextBox1.Text.Remove(TextBox1.< LENGTH OF TEXT BOX > - 1) Catch ex As Exception TextBox1.Text = "" End Try Friends try considering this code to your calculator to the CE activity.. June 03 E-Governance in IndiaINDIAN E-GOVERNMENT Overview
Definition
What is E-Governance : Imagine a situation in which all interaction with government can be done through one counter 24 hours a day, 7 days a week, without waiting in Queues. In the near future this will be possible if governments are willing to decentralize responsibilities and processes, and if they start to use electronic means such as the Internet. Each citizen can then contact the government through a website where all forms, legislation, news and other Information will be available.
Why E-Governance
Human Queues
High cost
Time
Forgery
Bribery issues
Weak communication
Unbalanced development
Delivering government services
Enabling variety in delivering
Adding value to information
Providing authoritative data
Delivering value for money
Enhancing public Engagement
Strengthening trust and security
What will E-Governance do E-Governance widely classified into three to make all the government activities to be simple and efficient.
E-Government affects everyone
E-Government built trust
E-Government delivering results
E-Government engages people
E-Government makes people first
E-government is collaborative
E-government an expert system
E-governance can empower business
E-governance values banking
Government to Government E-government provides quality service
E-government leads accuracy
|
|||||
|
|