User contributions
From JholJhapata
- 08:13, 1 June 2025 diff hist +3,562 N SudokuSolver Created page with "Here’s a simple Sudoku Solver in C# using backtracking. It works on a standard 9x9 Sudoku grid. thumb|SudokuSolver using System; using S..." current
- 08:12, 1 June 2025 diff hist +12 N File:SudokuSolver.png current
- 12:21, 3 August 2022 diff hist +494 State Management in ASP.NET →OutProc current
- 10:47, 3 August 2022 diff hist +1 OutProc Session SQLServer current
- 15:29, 29 July 2022 diff hist +2,082 N OutProc Session SQLServer Created page with "ASP.NET session state is designed to enable you to easily store user session data in different sources for your ASP.NET applications. By default, session state values and info..."
- 18:14, 29 November 2020 diff hist -9 Threading →Methods of Thread current
- 16:52, 29 November 2020 diff hist +5,217 Threading
- 05:33, 29 November 2020 diff hist -4,946 Threading
- 05:33, 29 November 2020 diff hist +4,946 Threading
- 16:43, 28 November 2020 diff hist +3,125 N Threading Created page with ".Net supports parallel execution through multithreading. A thread is an independent execution path, able to run simultaneously with other threads. A client program starts in a..."
- 17:45, 19 October 2020 diff hist +458 Builder Design Pattern current
- 16:21, 19 October 2020 diff hist +158 Design Patterns current
- 16:05, 19 October 2020 diff hist +507 Changing the color of title bar (Non Client Area) current
- 17:28, 9 May 2020 diff hist +88 ASP.NET Cookies current
- 07:54, 3 May 2020 diff hist +4 Open-Closed Principle current
- 18:36, 29 March 2020 diff hist +336 Changing the color of title bar (Non Client Area)
- 08:55, 29 March 2020 diff hist +29 N File:ColorFramework.png current
- 18:21, 28 March 2020 diff hist +9,346 N Changing the color of title bar (Non Client Area) Created page with "== Problem == == Solution == == Code == using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; usi..."
- 13:52, 23 February 2020 diff hist +4,484 Factory Method Design Pattern current
- 13:03, 23 February 2020 diff hist 0 Simple Factory Pattern current
- 11:25, 23 February 2020 diff hist +3,539 Factory Method Design Pattern
- 10:44, 23 February 2020 diff hist +9 Simple Factory Pattern
- 10:43, 23 February 2020 diff hist +29 N File:Factory Method Design Pattern.png current
- 10:36, 23 February 2020 diff hist +67 Simple Factory Pattern
- 10:35, 23 February 2020 diff hist +22 N File:Simple Factory Pattern Diagram.png current
- 10:01, 23 February 2020 diff hist +6,339 Simple Factory Pattern
- 06:31, 23 February 2020 diff hist +22 N File:Simple Factory Pattern.png current
- 13:10, 21 February 2020 diff hist +2 Design Patterns
- 15:32, 18 February 2020 diff hist +300 Design Patterns
- 15:32, 18 February 2020 diff hist +273 N Simple Factory Pattern Created page with "Simple Factory Pattern returns an instance of one of several possible classes depending on the type of data provided. It is quite common to return a common parent class and co..."
- 03:28, 11 February 2020 diff hist +80 Abstraction current
- 16:25, 8 February 2020 diff hist +1,062 Garbage Collection current
- 15:33, 8 February 2020 diff hist +2,610 N Garbage Collection Created page with "The garbage collector (GC) serves as an automatic memory manager in the common language runtime (CLR). When a class object is created at runtime, certain memory space is alloc..."
- 17:52, 4 February 2020 diff hist +320 State Management in ASP.NET →Query Strings
- 17:51, 4 February 2020 diff hist +315 ASP.NET Query Strings current
- 17:32, 2 February 2020 diff hist +965 N ASP.NET Query Strings Created page with "'''Query string''' is one of the techniques in Web applications to send data from one page to another. A query string consists of two parts, field and value, and each of pair..."
- 15:02, 2 February 2020 diff hist +1,331 State Management in ASP.NET →Control State
- 16:12, 23 January 2020 diff hist +274 State Management in ASP.NET
- 16:11, 23 January 2020 diff hist +2,339 N ASP.NET Cookies Created page with "Cookies is a small piece of information stored on the client machine. Its is used to store user preference information like Password, City, SessionId etc on client machines. W..."
- 15:13, 23 January 2020 diff hist +285 State Management in ASP.NET
- 15:13, 23 January 2020 diff hist +2,007 N ASP.NET Hidden Field Created page with "Hidden Field is non visual control in ASP.NET where we can save the value. This is one of the types of client-side state management tools. It s..." current
- 14:48, 23 January 2020 diff hist -1,717 State Management in ASP.NET
- 14:48, 23 January 2020 diff hist +5,269 N ASP.NET View State Created page with "View State is the method to preserve the Value of the Page and Controls between round trips. It is a Page-Level State Management technique. View State is turned on by default..." current
- 13:30, 23 January 2020 diff hist +2,201 State Management in ASP.NET
- 13:29, 23 January 2020 diff hist +9 N File:ViewState.png current
- 15:46, 5 January 2020 diff hist +940 N State Management in ASP.NET Created page with "As we all know, '''HTTP''' or '''HTTPS''' is stateless protocol. It just cleans up or we can say removes all the resources/references that were serving a specific request in t..."
- 15:39, 5 January 2020 diff hist +27 N File:State Management Techniques.png current
- 12:46, 5 January 2020 diff hist +6,324 N ASP.NET page life cycle Created page with "When an ASP.NET page runs, the page goes through a series of processing steps, which is know as page life cycle. These include initialization, instantiating controls, restorin..." current
- 11:57, 5 January 2020 diff hist +23 N File:ASP.NET Page Life Cycle.png current
- 08:31, 5 January 2020 diff hist +6,298 Constructor current