All public logs
From JholJhapata
Combined display of all available logs of JholJhapata. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 08:13, 1 June 2025 Admin talk contribs created page 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...")
- 08:12, 1 June 2025 Admin talk contribs created page File:SudokuSolver.png
- 08:12, 1 June 2025 Admin talk contribs uploaded File:SudokuSolver.png
- 15:29, 29 July 2022 Admin talk contribs created page 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...")
- 16:43, 28 November 2020 Admin talk contribs created page 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...")
- 12:55, 3 May 2020 Admin talk contribs deleted page View State in ASP.NET (https://jholjhapata.com/wiki/ASP.NET_View_State)
- 08:55, 29 March 2020 Admin talk contribs created page File:ColorFramework.png
- 08:55, 29 March 2020 Admin talk contribs uploaded File:ColorFramework.png
- 18:21, 28 March 2020 Admin talk contribs created page 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...")
- 10:43, 23 February 2020 Admin talk contribs created page File:Factory Method Design Pattern.png
- 10:43, 23 February 2020 Admin talk contribs uploaded File:Factory Method Design Pattern.png
- 10:35, 23 February 2020 Admin talk contribs created page File:Simple Factory Pattern Diagram.png
- 10:35, 23 February 2020 Admin talk contribs uploaded File:Simple Factory Pattern Diagram.png
- 06:31, 23 February 2020 Admin talk contribs created page File:Simple Factory Pattern.png
- 06:31, 23 February 2020 Admin talk contribs uploaded File:Simple Factory Pattern.png
- 15:32, 18 February 2020 Admin talk contribs created page 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...")
- 15:33, 8 February 2020 Admin talk contribs created page 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:32, 2 February 2020 Admin talk contribs created page 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...")
- 16:11, 23 January 2020 Admin talk contribs created page 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 Admin talk contribs created page 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...")
- 14:48, 23 January 2020 Admin talk contribs created page 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...")
- 13:29, 23 January 2020 Admin talk contribs created page File:ViewState.png
- 13:29, 23 January 2020 Admin talk contribs uploaded File:ViewState.png
- 15:46, 5 January 2020 Admin talk contribs created page 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 Admin talk contribs uploaded File:State Management Techniques.png
- 15:39, 5 January 2020 Admin talk contribs created page File:State Management Techniques.png
- 12:46, 5 January 2020 Admin talk contribs created page 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...")
- 12:31, 5 January 2020 Admin talk contribs created page View State in ASP.NET (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...")
- 11:57, 5 January 2020 Admin talk contribs created page File:ASP.NET Page Life Cycle.png
- 11:57, 5 January 2020 Admin talk contribs uploaded File:ASP.NET Page Life Cycle.png
- 06:58, 5 January 2020 Admin talk contribs created page Difference Between Interface vs Abstract Class (Created page with "Interface and Abstract Class, both are the ways to achieve the abstraction in C#. == Abstract Class == An '''Abstract class''' is never intended to be instantiated directly. T...")
- 06:57, 5 January 2020 Admin talk contribs created page Constructor (Created page with "A '''constructor''' is a special method of the class which gets automatically invoked whenever an instance of the class is created. Like methods, a constructor also contains t...")
- 06:25, 5 January 2020 Admin talk contribs created page Abstraction (Created page with "'''Abstraction''' is the process representing essential features without including background details, to reduce the complexity for the users. Abstraction can be achieved with...")
- 17:36, 9 December 2019 Admin talk contribs created page File:Singleton.png
- 17:36, 9 December 2019 Admin talk contribs uploaded File:Singleton.png
- 17:54, 8 December 2019 Admin talk contribs created page Prototype Design Pattern (Created page with "Prototype pattern refers to creating duplicate object while keeping performance in mind. It allows us to hide the complexity of making new instances from the client. The conce...")
- 17:49, 8 December 2019 Admin talk contribs created page Builder Design Pattern (Created page with "Builder pattern aims to "Separate the construction of a complex object". It was was introduced to solve some of the problems with Factory and Abstract Factory design patterns...")
- 15:16, 8 December 2019 Admin talk contribs created page Abstract Factory Design Pattern (Created page with "Abstract Factory pattern is almost similar to Factory Pattern is considered as another layer of abstraction over factory pattern. Abstract Factory patterns work around a super...")
- 13:30, 8 December 2019 Admin talk contribs created page Factory Method Design Pattern (Created page with "Factory Pattern or Factory Method Pattern is a creational design pattern that provides an interface or abstract class for creating objects in a superclass, but allows subclass...")
- 13:02, 13 October 2019 Admin talk contribs created page Singleton Design Pattern (Created page with "The singleton pattern is a software design pattern that restricts the instantiation of a class to one single instance. This is useful when exactly one object is needed to coor...")
- 11:13, 13 October 2019 Admin talk contribs created page Design Patterns (Created page with "Design patterns provide general solutions to software design problems we find in real-world application development. Before starting with design patterns let's understand wha...")
- 10:56, 13 October 2019 Admin talk contribs created page File:Design Patterns.png
- 10:56, 13 October 2019 Admin talk contribs uploaded File:Design Patterns.png
- 17:52, 2 September 2019 Admin talk contribs created page Inheritance (Created page with "Inheritance is a concept in which you define parent classes and child classes.<br> The child classes inherit methods and properties of the parent class, but at the same time,...")
- 15:37, 24 August 2019 Admin talk contribs created page File:Dependency Inversion Principle.png
- 15:37, 24 August 2019 Admin talk contribs uploaded File:Dependency Inversion Principle.png
- 15:36, 24 August 2019 Admin talk contribs created page File:Violating Dependency Inversion Principle.png
- 15:36, 24 August 2019 Admin talk contribs uploaded File:Violating Dependency Inversion Principle.png
- 17:01, 20 August 2019 Admin talk contribs created page Encapsulation (Created page with "'''Encapsulation''' is the process of wrapping the data and code under a single unit. It is the mechanism that binds together code and the data it manipulates. In a different...")
- 03:18, 17 August 2019 Admin talk contribs created page Object-Oriented Programming System (OOPs) Concepts (Created page with "'''Object-oriented programming System(OOPs)''' is a programming paradigm based on the concept of “'''objects'''” that contain data and methods. The primary purpose of obje...")