First of all, we need to understand
A
First of all, we need to understand
A
The ToolStrip control is a special control that is used to create professional looking and highly optimized toolbars, status bars, and menus in a Windows form. It can host ToolStripItem controls, which are similar to common controls such as Button, Label, and ComboBox. However, ToolStripItem controls are specifically designed to be hosted in the ToolStrip control.
The Web Setup project is a Setup and Deployment project, which is used to create installation packages for the deployment of Web-based applications such as XML Web services, Web applications etc., to a Web server. It creates an (.msi) installer package. Using the Web Setup project for deployment handles the registration and configuration issues automatically.
Strong Name (Sn.exe) is a tool used to sign assemblies with strong names. It also provides signature generation, signature verification, and key management. Following is the syntax for using Sn.exe:
where, the term options specifies the options to be used, and parameters specifies the parameters used with options. Following are the options that are commonly used with Sn.exe:
.NET Services Installation (Regsvcs.exe) is a tool used to load and register assemblies as well as generate, register, and install a type library into a COM+ 1.0 application. It is also used to configure services that are programmatically added to a class.
The following are the disadvantages of using profile properties :
The following table describes the different usages of server-based state management techniques:
| Session State | It is used when small amounts of state management information that is specific to an individual session need to be stored for each user session. It is also used when there is no security issue. |
The following are the advantages of using a database for storing server-based state management information:
The following are the disadvantages of using a database to store server-based state management information:
The following are the advantages of using session state server-based technique:
However, session state has a drawback. The state management information stays in memory as long as a session is alive. Therefore, it degrades the performance of a Web server. The data variables that contain blocks of information such as large datasets can also affect the performance of a Web server, as server load may increase.