Home>Network programming tutorial> ASP.NET tutorial
All ASP tutorial ASP tutorial ASP.NET tutorial PHP tutorial JSP tutorial C#/CSHARP tutorial XML tutorial Ajax tutorial Perl tutorial Shell tutorial Visual Basic tutorial Delphi tutorial Mobile development tutorial C/C++ tutorial Java tutorial J2EE/J2ME Software engineering
ASP.NET tutorial
  • ASP.NET Web Pages layout

    ASP.NET Web Pages layout

    This section introduces the use of ASP.NET WebPages to achieve a unified page layout. With Web Pages, creating a consistently laid out website is easy. A consistent look and feel across the Internet, you
    2024-12-30
  • ASP.NET Web Pages - Tutorial

    ASP.NET Web Pages - Tutorial

    ASP.NET is a development framework and a new generation of ASP (Active Server Pages). ASP.NET is a development framework that uses HTML, CSS, JavaScr
    2024-12-30
  • ASP.NET security

    ASP.NET security

    Security Implementing website security involves the following aspects: Identity authentication: the process of confirming the user's identity and authenticity. Four types of authentication are provided in ASP.NET: Windows Authentication Forms Authenti
    2024-12-30
  • ASP.NET Language Integrated Query

    ASP.NET Language Integrated Query

    Language Integrated Query Most applications are data-centric, however most data warehouses are relational databases. Over the years, designers and developers have designed applications based on the object model. Object is responsible for connecting compon
    2024-12-30
  • ASP.NET debugging

    ASP.NET debugging

    Debugging allows developers to see step by step how the code works, how the values ​​of variables change, how objects are created and destroyed, etc. When a web page is run for the first time, Vi
    2024-12-30
  • ASP.NET Personalization

    ASP.NET Personalization

    Personalized websites are designed for repeat visits by users. Personalization allows a website to remember user identification and other information details, and it provides a personal context for each user. ASP.NET is designed to meet the needs of featu
    2024-12-30
  • ASP.NET exception handling

    ASP.NET exception handling

    Exception Handling There are three aspects of exception handling in ASP.NET: Tracing- Tracing program execution at the page level or application level. Error handling - at page level or application
    2024-12-30
  • ASP.NET custom controls

    ASP.NET custom controls

    Custom Controls ASP.NET allows users to create controls. These user-defined controls are classified as: User Controls Custom Controls User Controls User controls behave like miniature ASP.NET pages or web forms,
    2024-12-30
  • Introduction to ASP.NET

    Introduction to ASP.NET

    This section provides an overview of ASP.NET and introduces ASP.NET's server technology, development tools, and file extensions. Classic ASP - Active Server Pages (Dynamic
    2024-12-30
  • ASP.NET Tutorial

    ASP.NET Tutorial

    ASP.NET, also known as ASP+, is a Web development platform based on the .NET Framework. It is a new generation scripting language launched by Microsoft. ASP.NET is a programming language that uses HTML,
    2024-12-30
  • ASP.NET Web Services

    ASP.NET Web Services

    Web Services A Web service is a network-based function that can be obtained by web applications through web network protocols. Web service development mainly includes the following three aspects: Creating web service creation code
    2024-12-27
  • ASP.NET multithreading

    ASP.NET multithreading

    Multithreading A thread is defined as the execution path of a program. Each thread defines a unique flow control. If your application involves complex and time-consuming operations, such as database access or some intense I/O operations,
    2024-12-27
  • ASP.NET data caching

    ASP.NET data caching

    Data Caching What is caching? Caching is a technology that stores frequently used data/information in memory so that the next time the same data/information is needed, it can be retrieved directly from memory instead of being generated again from the appl
    2024-12-27
  • ASP.NET deployment

    ASP.NET deployment

    Deployment There are currently two types of ASP.NET deployments: Local deployment: In this case, the entire application is contained in a virtual directory, and all content and assemblies are
    2024-12-27
  • ASP.NET configuration

    ASP.NET configuration

    Configuring the behavior of an ASP.NET application is determined by different settings in the following two configuration files: machine.config web.config machine.c
    2024-12-27