MCTS.NET certification
All articles for MCTS.NET certification
Tips and How Tos for MCTS.NET certification
What is serialization?
in MCTS.NET
Serialization is the process in .NET that allows the programmer to take an instance of an object and convert it into a format that can be easily transmittable over the network or even stored in a database or file system. This object will actually be an instance of a custom type, including any...
continue reading " What is serialization?" »
Adding and Configuring Server Controls to a Web Forms Page Using C# .NET
in MCTS.NET
Introduction
Generally, a Web application provides information from a Web server to different client users over the Internet. The Hypertext Transfer Protocol (HTTP) is used to send requests from a client's Web browser to the Web application on the Web server. The HTTP then sends back...
continue reading "Adding and Configuring Server Controls to a Web Forms Page Using C# .NET" »
Adding and Configuring Server Controls to a Web Forms Page Using Visual Basic .NET
in MCTS.NET
Introduction
Generally, a Web application provides information from a Web server to different client users over the Internet. The Hypertext Transfer Protocol (HTTP) is used to send requests from a client's Web browser to the Web application on the Web server. The HTTP then sends back...
continue reading "Adding and Configuring Server Controls to a Web Forms Page Using Visual Basic .NET" »
ASP.NET State Management
in MCTS.NET
In an ASP.NET Web application, information about the current user, his preferences, and the application's current configuration are stored as values of global variables. This information is also stored as controls and properties of objects in memory to be used by the application until it is...
continue reading "ASP.NET State Management" »
ASP.NET Validation Controls
in MCTS.NET
ASP.NET provides a data validation framework for enabling validation of user input at the Web browser. Validation ensures that the user has input valid data into all required fields on a Web site. ASP.NET provides both client-side and server-side validation by facilitating Web pages with several...
continue reading "ASP.NET Validation Controls" »
Base64 Encoding
in MCTS.NET
The term Base64 refers to a specific MIME content transfer encoding. It is also used as a generic term for any similar encoding scheme that encodes binary data by treating it numerically and translating it into a base 64 representation. The particular choice of base is due to the history of...
continue reading "Base64 Encoding" »
Building Graphical User Interface
in MCTS.NET
Windows Forms are based on the Graphical User Interface (GUI). Hence, several graphical interface elements can be used within a Windows-based application. The .NET Framework provides the System.Drawing namespace that is included in the Windows Graphics Design Interface (GDI+). Several classes...
continue reading "Building Graphical User Interface" »
Configure Serviced Components
in MCTS.NET
There are specific COM+ services that are used to configure a serviced component and apply them in an application, which are as follows: Initiating the COM+ transactions in an application: A transaction consists of a series of operations, each of which is connected together to form a...
continue reading "Configure Serviced Components" »
Creating and Configuring a Web Application Using C# .NET
in MCTS.NET
In Visual Studio .NET, a Web application is used to provide information from a Web server to different client users over the Internet. It uses Hypertext Transfer Protocol (HTTP) to send requests from the client Web browser to the Web application on the Web server, and to return the application’s...
continue reading "Creating and Configuring a Web Application Using C# .NET" »
Creating and Configuring a Web Application Using Visual Basic .NET
in MCTS.NET
In Visual Studio .NET, a Web application is used to provide information from a Web server to different client users over the Internet. It uses Hypertext Transfer Protocol (HTTP) to send requests from the client Web browser to the Web application on the Web server, and to return the applications...
continue reading "Creating and Configuring a Web Application Using Visual Basic .NET" »