Understanding Stack Frames in .NET

2025-03-18 This article was created with the assistance of ChatGPT What is a Stack Frame? A stack frame is a data structure created on the call stack whenever a method is invoked. It holds all the necessary information for a method to execute and return correctly. Each thread in a .NET application has its ownContinue reading “Understanding Stack Frames in .NET”

Congfigure IIS to use later .net frameworks

2016/03/07 When IIS is first installed you will most probably get several errors when trying to launch your asp.net website. This is more prevalent when your application needs a .net framework that is higher than the .net framework version supported by the IIS out of the box. To fix these errors you need to followContinue reading “Congfigure IIS to use later .net frameworks”

ASP.NET – AutoPostBack : What is AutoPostBack and How AutoPostBack Works

2008-12-26 Today I was experimenting on a grid view where I was trying to select multiple rows of the grid view using a check box column. I wrote some code in the CheckedChanged of checkbox but then I found that the code was not executed when the state of the checkbox is changed. So IContinue reading “ASP.NET – AutoPostBack : What is AutoPostBack and How AutoPostBack Works”