Showing posts with label ASP.Net_Notes. Show all posts
Showing posts with label ASP.Net_Notes. Show all posts

Thursday, 26 January 2023

Page Auto Postback Property

Page Auto Postback Property A unique JavaScipt method is added by ASP.Net to the produced HTML Page if the web page we build contains one or...

ASP.NET Page Life Cycle Events

ASP.NET Page Life Cycle Events ASP.NET Page Life Cycle Events at every stage of the page life cycle, the page raises some events, which co...

Monday, 16 March 2020

What is Global.asax File?

What is Global.asax File? The global.asax allows us to write event handlers that react to global events in web applications. Global.as...

Wednesday, 11 March 2020

Boxing and Unboxing

Boxing and Unboxing Value types (int, struct, enum) are also compatible with the object! Boxing The assignment Object obj = 3; wraps...

Saturday, 13 April 2019

Class, Object, Arrays and Strings

Class and Object A class is a user-defined blueprint or prototype from which objects are created. Basically, a class combines the field...