Home|Tag:asp .net

Master Pages in ASP .NET

Well designed websites do not consist of completely independent pages. They give the feeling of a continuously running application. Good design practice is to offer the site visitors similar interface and user experience no matter where they are on the website. The most common shared interface between different pages of the same website is about

2019-08-25T21:21:37+03:00By |Categories: C#|Tags: |0 Comments

Rich Controls In ASP .NET

There is no strict definition of ASP .NET rich control but generaly these are controls whose object model is largely separate from the HTML they generate. Rich controls are still handled as single objects, they only differ from normal controls in terms of more complex HTML and user interface being generated. Let's take a look

2019-05-18T22:48:31+03:00By |Categories: C#|Tags: , |0 Comments

Basic Usage of View State in ASP .NET

Web applications cause a problem that is not present on traditional applications stored on the user's PC (tablet/phone). The problem is the following: the user connects to the server and requests a page, the page is delivered, the connection is stopped and then all the page objects are deleted from the server memory. This stateless

2019-05-18T22:50:22+03:00By |Categories: C#|Tags: |0 Comments

Introduction to Server Controls in ASP .NET

ASP .NET provides a new way to handle dynamic web forms. Unlike the conventional style where the developers had to adapt and improvise with HTML tags and attributes, ASP. NET server controls automatically provide their HTML structure. This allows the developers to focus just on the desired behavior. These server controls behave like objects and

2019-05-18T22:51:09+03:00By |Categories: C#|Tags: |0 Comments
Go to Top