Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Dot Net World software Blog  > 

Dot Net World Blog


manish4dotnet.blogspot.in
Category: Programming, Technology: ASP.Net ,C#, Database:SQL Server,Web Technology: jQuery, Java Script,HTML,Dot Net Tips and Tricks, Application : Web Application, Window Application,CodeProject
2024-02-14 18:38
A standalone component is a type of component that doesn’t belong to any specific Angular module.Before Angular version 14, when you created a component, you typically had to include i… Read More
2024-02-04 13:00
There are several important concepts in Angular, and Decorators are an important concept to learn when you are working Angular. Decorators in Angular are a powerful and essential feature use… Read More
Bridge Design Pattern In C#
2024-01-25 09:00
The Bridge Design Pattern is a structural pattern that separates the abstraction from its implementation so that the two can vary independently.This pattern involves an interface that acts a… Read More
Flyweight Design Pattern In C#
2024-01-21 09:00
The Flyweight design pattern is a structural pattern that focuses on minimizing the memory footprint or computational expenses of an object. It achieves this by sharing as much as possible w… Read More
Proxy Design Pattern In C#
2024-01-14 02:14
The Proxy Design Pattern is a structural design pattern. that provides a surrogate or placeholder for another object to control access to it. This pattern comes in handy when we want to add… Read More
Composite Design Pattern In C#
2024-01-12 09:00
The Composite Pattern is a structural design pattern that enables us to treat individual and group objects uniformly by creating a hierarchical (tree-like) structure of objects, where both t… Read More
Facade Design Pattern In C#
2024-01-08 03:01
Facade is a structural design pattern that provides a simplified interface to a library, a framework, or any other complex set of classes.It helps encapsulate the complexity of multiple subs… Read More
Decorator Design Pattern In C#
2024-01-02 09:00
The Decorator Design Pattern is a structural pattern in software development that allows behavior to be added to individual objects, either statically or dynamically, without affecting the b… Read More
Adapter Design Pattern In C#
2023-12-29 09:00
The Adapter Design Pattern is a structural pattern that allows incompatible interfaces to work together. It acts as a bridge between two incompatible interfaces, enabling them to collaborate… Read More
2023-12-28 09:00
Caching responses is a powerful technique to improve the performance and scalability of web applications. In .NET Core, response caching is a feature that helps store the output of an action… Read More
2023-12-25 09:00
In .NET Core, managing caching efficiently can significantly enhance the performance of applications. The IMemoryCache interface plays a pivotal role in caching data in memory, providing a s… Read More
Design Pattern : Builder Design Pattern
2023-12-03 18:44
What is the Builder Design Pattern? The Builder Design Pattern is a creational design pattern that helps in constructing complex objects step by step. It separates the construction of an obj… Read More
2023-11-19 20:38
Angular 17 recently came out with several exciting updates. One notable addition is the Control Flow feature. This new feature simplifies template writing by introducing a direct way to han… Read More
Design Pattern : Factory Design Pattern
2023-10-01 03:04
The Factory Design Pattern is one of the most frequently used design patterns in real-time applications. The Factory Design Pattern in C# falls under the Creational Design Patterns Category… Read More
Design Pattern : Singleton Design Pattern
2023-08-31 00:36
The Singleton design pattern stands as one of the most commonly used creation patterns in software development. It guarantees that a class exists in only one instance and grants a universal… Read More
Angular - @HostBinding And @HostListener
2023-06-04 02:17
Today, let's explore two powerful decorators in Angular: @HostBinding and @HostListener.The HostBinding and HostListener are decorators in Angular. HostListener listens to host events, while… Read More
2023-05-15 02:17
Hyer-Text Transfer Protocol(HTTP) HTTP(Hyer-Text Transfer Protocol) is a communication protocol on the web that is used to transmit data. Extensible using Headers to send/receive extra inf… Read More
Primary Constructor - C# 12
2023-05-05 01:23
Primary constructor allows you to add parameters to calss declaration itself and use these values in class body. Promary constructor was introduced for records in C#9. C#12 extends it to all… Read More
Angular- Event Binding
2023-05-02 03:07
In Angular, events are handled by using the following syntax- (event name)="event handler method" For example- Show Above, (click) binds the button click event and onShow() statement cal… Read More
Angular- Component LifeCycle
2023-04-26 00:02
In Angular, a component instance has a lifecycle that starts with instantiating the component class and rendering the view with its child view. The lifecycle continues with change detection… Read More
Angular- Component
2023-04-22 01:26
Angular is a framework for developing SPA applications. A SPA application view is made of one or more components. A component represents the view in the Angular application. Components are t… Read More
Angular - Development Setup
2023-04-16 19:21
Angular is a JavaScript framework for building web applications. It is maintained by Google and is widely used for creating dynamic single-page applications (SPAs) and complex user interface… Read More
Angular- Introduction
2023-04-10 17:40
What is Angular? Angular is a JavaScript framework for building web applications. It is maintained by Google and is widely used for creating dynamic single-page applications (SPAs) and com… Read More
2023-04-09 03:41
What is Single Page Application (SPA)? A Single Page Application (SPA) is a web application that loads a single HTML page and dynamically updates its content as the user interacts with the a… Read More
Deserialize XML To C# Object
2017-07-13 14:13
In this post we will see the simple approach to deserialize XML to C# object.Our XML Stringstring xmlString = "1Manish Dubey2Pankaj";Create our classpublic class Student{ public int Id { ge… Read More
ASP.Net MVC - Custom Model Binding
2017-07-07 13:18
In last article, we have discussed about what is ASP.NET Model binding and saw a basic introduction to the Model Binder. In this post we will see creating Custom Model Binding in ASP.Net MVC… Read More
ASP.Net MVC Model Binding
2017-07-03 14:35
Model BindingWhat is Model Binding?Model Binding in ASP.Net MVC maps the data from HTTP request to action method parameters. These parameters may be simple types such as string, integer or t… Read More
2015-10-28 07:19
Request Processing IIS gets the requestLooks up a script map extension and maps to aspnet_isapi.dllCode hits the worker process (aspnet_wp.exe in IIS5 or w3wp.exe in IIS6).NET runtime i… Read More
2015-10-06 06:36
Most programming languages executes set of statements from Top to Bottom but SQL Server executes set of statements in a logical order which is uniquely decides by the SQL Server in a predefi… Read More
2015-10-06 06:31
In this post we will see the newly added features in C# 6.0. In C# 6.0 some very cool features has been added like "Auto-property Enhancements", "Primary Constructors", "Expressions as Funct… Read More
2015-09-13 18:48
What is Backbone.js ?Backkbone.js is a JavaScript library that let us create Single-Page Applications (SPAs) in structured manner. Backbone.js is based on Model-View-Controller (MVC) design… Read More
2014-11-15 17:54
In interviews, there are some programming questions which you will find most of the places like Write a program to reverse the string or Write a program to check string are palindrome or not… Read More
2013-06-03 13:02
In this post, I am explaining how can you import the Gmail contacts in your ASP.Net application. For importing Gmail contacts we need some dlls which you can get after download Google Data A… Read More

Share the post

Dot Net World

×

Subscribe to Dot Net World

Get updates delivered right to your inbox!

Thank you for your subscription

×