C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Abhimanyu K Vatsa(4)
Nimit Joshi(3)
Sandeep Singh Shekhawat(3)
Vijay Yadav(2)
Rikam Palkar(2)
Manoj Kalla(2)
Rahul Kumar Saxena(2)
Mukesh Kumar(2)
Ajay Gandhi(2)
Rahul Bansal(2)
Sourav Kayal(2)
Vithal Wadje(2)
Anubhav Chaudhary(2)
Mahesh Chand(2)
Mudita Rathore(2)
Dipal Choksi(2)
Arkadeep De(1)
Deepak Tewatia(1)
Vijay Kumari(1)
Kautilya Utkarsh(1)
Ishika Tiwari(1)
Jaimin Shethiya(1)
Kuppu Swami(1)
Dhanesh Kumar M J(1)
Sameer Shukla(1)
Swati Chavan(1)
Jamil Moughal(1)
Pankaj Patel(1)
Mageshwaran R(1)
Farhan Ahmed(1)
Nanddeep Nachan(1)
Usama Shahid(1)
John Morehouse(1)
Bhuvanesh Mohankumar(1)
Satyaprakash Samantaray(1)
Guest User(1)
Yadagiri Reddy (1)
Gnanavel Sekar(1)
Nishan Aryal(1)
Jasminder Singh(1)
Gowtham K(1)
Rupesh Kahane(1)
Vincent Maverick Durano(1)
Prakash Tripathi(1)
Nitin Pandit(1)
Hussein Salman(1)
Atul Rawat(1)
Kartik Vaghasiya(1)
Kiranteja Jallepalli(1)
Jignesh Trivedi(1)
Harpreet Singh(1)
Nitin (1)
Manish Kumar Choudhary(1)
Badar Yousaf(1)
Akshay Patel(1)
Pramod Thakur(1)
Vishal Gilbile(1)
Prerana Tiwari(1)
Imran Ghani(1)
Brij Mishra(1)
Vikram Jain(1)
Shivprasad (1)
Manish Singh(1)
Prabhu Raja(1)
Shirsendu Nandi(1)
Vishal Nayan(1)
Kumar Saurabh(1)
Suresh Paldia(1)
Rajeev Kumar(1)
Jaish Mathews(1)
archak sainanee(1)
Amit Choudhary(1)
C# Curator(1)
Bryian Tan(1)
Rohit Sinha(1)
Michael Livshitz(1)
Tanima (1)
Khaled Rawy(1)
Mike Knuckey(1)
Yogesh Verma(1)
Resources
No resource found
C# 13: Partial Properties and Indexers Simplified
May 05, 2025.
C# 13 introduces partial properties and indexers, enabling cleaner separation of logic in partial classes. This boosts maintainability, avoids hacks, and simplifies working with generated code and tools like EF Core.
Essential C# Keywords
Dec 25, 2024.
This article explains important C# keywords that help in writing more efficient code. It covers keywords like volatile, value, get, set, yield, partial, and where, describing their uses in a simple manner. These concepts are essential for anyone looking to improve their C# programming skills.
What's New in ASP.NET Core 9?
Nov 15, 2024.
C# 13 enhances developer productivity with features like flexible params collections, scoped locks, and partial properties, allowing for streamlined coding, improved performance, and robust thread safety.
Creating a Custom Date Picker in jQuery with Validation
Aug 13, 2024.
This article demonstrates how to create a custom date picker in jQuery with validation. It covers setting up HTML text boxes for date input, initializing jQuery Datepicker with date range constraints, and storing selected dates in hidden fields.
How to Use Partial Views in .NET Core
Aug 08, 2024.
Partial views in ASP.NET Core allow developers to create reusable, modular UI components, enhancing code maintainability and reducing duplication. They render portions of webpages, facilitating dynamic content updates and better code management.
Batch Gradient Descent: The Key to Machine Learning Optimization
Jun 08, 2024.
Batch Gradient Descent is a robust and precise optimization technique that forms the backbone of many machine learning algorithms. Its ability to provide stable and deterministic updates makes it a preferred choice for training models on small to moderately sized datasets.
Passing Values from Partial Views to Parent Views in ASP.NET MVC
May 30, 2024.
Learn efficient methods for sending values from partial views to parent views in ASP.NET MVC. Explore challenges, examples, and techniques like JavaScript messaging for seamless communication, enhancing user experience and interactivity.
Learn about Static Class in C#
Apr 16, 2024.
This article explores the concept of static classes in C#, detailing their characteristics, usage, and limitations. It covers static class setup, static class features, static method usage, and dependency injection considerations.
Handling HTTP Patch Method in AngularJS and C#
Jan 12, 2024.
Discover the power of the HTTP PATCH method with this tutorial, focusing on AngularJS frontend and C# backend integration. Uncover the nuanced approach of making partial updates to resources, as the AngularJS controller leverages PATCH requests to the C# backend's Web API.
Revolutionize Your Umbraco Development with View Components
May 07, 2023.
Umbraco is an open-source content management system(C M S). mbraco has the ability to use view components to build dynamic and reusable user interface (UI) elements. The latest version of Umbraco is built on top of the .Net core and offers many exciting new features and improvements. One of the key improvements is the introduction of view components.
Exploring The Benefits Of Function Currying In Java - Understanding The Concept And Advantages
Mar 09, 2023.
In this article, we will delve into the concept of Function Currying in Java and explore the benefits it provides. We will first explain what Function Currying is, how it works, and why it is important in functional programming. Then, we will discuss the advantages of using Function Currying, such as overcoming limitations in the number of function parameters, creating more modular and reusable code, and simplifying function composition.
Partial Classes and Layouts in Blazor
Aug 28, 2020.
In this article, you will learn about Partial Classes and Layouts.
Learn About Partial Method In C#
Aug 23, 2020.
In this article, you will learn about partial method in C#.
Learn About Partial Class In C#
Aug 17, 2020.
As per the definition, partial means favouring one side over another, but C# begs to differ. C# treats partial classes or methods equally.
ViewComponent In ASP.NET Core
Dec 23, 2019.
ViewComponent in ASP.NET Core enables the creation of reusable UI components, enhancing code modularity and separation of concerns. Leveraging Razor syntax, it facilitates rendering dynamic content and supports dependency injection for easy integration into MVC architecture.
MVC - Best Way To Render Partial View
Aug 09, 2019.
In this article, we will cover and discuss various ways of rendering partial view - as well as examples of each one.
Partial Class In C#
Jul 08, 2019.
In this article, I will explain the concept of partial class in C# with some examples and how we can use it in a partial class.
Different Ways Of Rendering Partial View In MVC
Apr 23, 2019.
In this article, we will understand the basics of the partial view, different ways of rendering partial view, and uses of partial view.
SharePoint Framework - React Partial State Update
Jan 11, 2019.
In this article, we will explore how we can partially update the state in SPFx web part. We will use React JS in this example. For this article, I am using SharePoint Framework version 1.7.1
How To Use Partial Actions And Partial Views In ASP.NET MVC
Jul 12, 2018.
As we already know that Partial views are the small views that we can render in different views. We use partial views to breakdown the large views, we also use the partial views for the reusability purpose. Let’s take an example of Partial Views.
JavaScript Postback Download Via PowerShell
Mar 28, 2018.
Recently, one of my clients had a need to automatically download a file from a public facing state government website. Normally this can easily be done in a number of ways. Powershell is the first way that comes to mind but you could also utilize scripting tools such as wget or curl just to name a couple. However, thanks to the awesome power (note: sarcasm) of Dot Net Nuke, the download link is hidden behind Javascript postback functionality.
Special Class Of C# Series - Part One - Partial Class
Dec 13, 2017.
This article will help you understand what partial class is used in C-Sharp language. Also, I will explain the various uses of the partial class.
Partial View In ASP.NET MVC Using Entity Framework
Dec 10, 2017.
A partial view is same as user control in ASP.NET MVC that is used for code re-usability. Partial views help us to reduce code duplication. Hence partial views can be used for views like as Header and Footer views.
ASP.NET Core 2.0 MVC Partial Views
Nov 03, 2017.
Partial views are special type of views that are rendered inside other views. They are useful for reusing parts of a view or splitting a large view into smaller components.
Overview Of Partial View In ASP.NET MVC
Oct 11, 2017.
In ASP.NET MVC, View gets activated or executed with the help of a controller. All the incoming browser requests first knock to the controller then controller functionality will decide which view or action should be executed.
Overview Of Selenium Locators
Jun 26, 2017.
This article explains Selenium Locators. Selenium provides us with different types of locators ID, Name, Class Name, CSS Selector, XPath, Link Text, Partial Link Text, Tag Name.
Partial View In MVC With Kendo UI TabStrip
May 04, 2017.
In this article, we are going to see about how to use Partial View in a different way with Kendo Tabstrip in MVC.
jQuery Unobtrusive AJAX For Partial Updates In ASP.NET MVC
Apr 18, 2017.
In this article, we will learn how to update a div partially using jQuery Unobtrusive AJAX in ASP.NET MVC Applications.
Partial Methods In C#
Feb 05, 2017.
The partial keyword in a C# method creates a partial method. In this article, you will learn about partial methods in C# and how to use a partial method in your .NET application.
MVC 5 - Partial View With Pagination In jQuery Dialog
Dec 21, 2016.
This article describes how we can integrate the partial view with div element with the help of jQuery & jQuery UI in ASP.NET MVC 5 Application.
Remote Binding Kendo Grid In Partial View Using ASP.NET MVC And Entity Framework
Aug 28, 2016.
In this article, you will learn how to perform remote binding Kendo Grid in Partial View using ASP.NET MVC and Entity Framework.
Different JSON Result Types Used In MVC
Aug 04, 2016.
In this article, we will learn different JSON result types, using MVC.
Highlight GridView Row On Click And Retain Selected Row On Postback
Jul 01, 2016.
In this article, you will learn how to highlight GridView row on click and retain selected row on Postback.
Layout View, View, And Partial View In ASP.NET
Jun 16, 2016.
In this article, you will learn about layout view, view, and partial view.
Partial View In ASP.NET MVC
May 09, 2016.
In this article you will learn about Partial View in ASP.NET MVC. Partial view is regular view which can be used multiple times in an application and has file extension .cshtml.
Benefits Of Partial View In MVC 5
Apr 30, 2016.
In this article you will learn about the benefits of Partial View in MVC 5.
Render Partial View As Modal Popup Using AJAX Call with JSON
Apr 18, 2016.
In this article I am going to show how we can render a partial view in a modal popup with AJAX call.
Preparing .NET Interview - Part Six (OOPs)
Apr 11, 2016.
This article presents the common questions asked in .NET interview related to OOPs and explains the answers in an easy way.
Best Way To Bind Partial Views For Improving Performance
Feb 23, 2016.
In this article, I will show you how to bind Partial View which makes your site faster in performance.
Paging, Sorting, And Filtering With Partial View In ASP.NET MVC 5
Feb 21, 2016.
This article will describe how to perform Paging, Sorting, and Filtering with the Partial View in MVC 5.
Using Partial Views In ASP.NET MVC 5.0: Part 7
Jan 28, 2016.
In this article you’ll learn how to use or call a partial view in ASP.NET MVC 5.0 and all the ways to use a partial view in a view.
ASP.NET MVC Partial Updates Using Unobtrusive Ajax And JQuery
Jan 08, 2016.
In this article you will learn ASP.NET MVC partial updates using unobtrusive Ajax and JQuery.
Why Partial View In ASP.NET MVC
Dec 16, 2015.
In this article you will learn about Partial View in ASP.NET MVC. Partial Views are a type of view which can be reused across the ASP.NET MVC application.
Stepwise Display Multiple Partial View Using JSON in MVC 5
Dec 14, 2015.
This article will help you to understand how multiple partial views can be displayed in single action in MVC.
Update A Div And Partial View Using Ajax.BeginForm On Form Submit
Nov 03, 2015.
In this article we will learn step by step how to update the partial view in div using Ajax.BeginForm.
Using Partial Class Instead Of Model class In ASP.NET MVC
Oct 12, 2015.
In this article we will learn how we can use partial class instead of Model Class in MVC using entity framework.
Insert and Display Record in Form Using AjaxBegin Form
Aug 03, 2015.
This article explains how to use the partial view and AjaxBegin Form to load data without a page reference. I have explained how to insert and list code.
Partial Class in C#
May 29, 2015.
This article explains partial classes in C# Programming. A partial class is a concept where a single class can be split into 2 or more files.
Partial View in MVC
May 14, 2015.
Learn what is a partial view in MVC and how to implement a partial view in an ASP.NET MVC application.
How to Create a Partial View in MVC
May 14, 2015.
This article shows how to create a partial view and the two ways by which we can render partial views.
Showing Preview of an Image Without Postback in ASP.Net
Mar 30, 2015.
In this article I will explain how you can show the preview of an image before uploading.
Cross-Page Postback in ASP.Net
Mar 23, 2015.
In this article we will see how to use a cross-page postback in ASP.NET.
How to Add jQuery Datepicker in MVC
Feb 26, 2015.
Integrating jQuery Datepicker in MVC enhances user experience by allowing easy date selection. It's implemented with JavaScript, HTML, and CSS, offering interactive calendar functionality within ASP.NET MVC views.
Partial View Usage With Dynamic Expando Object and Tuple
Feb 17, 2015.
In this article you will learn how to use a Partial View with a Dynamic Expando Object and Tuple.
How to Maintain the Scroll Position After Postback of a Web Page
Dec 18, 2014.
In this article I will show how you can maintain the last focus position after scrolling.
Partial View in MVC Razor
Nov 13, 2014.
In this article, I am going to explain what a partial view is in MVC.
Partial View Sample in MVC: Day 35
Nov 11, 2014.
In this article we will see how to create a partial view and how to render it in a layout page.
What a is Partial View is and Difference Between Html.Partial and Html.RenderPartial in MVC
Sep 23, 2014.
In this article we learn what a Partial View is and how to call a Partial View and in which scenario which method is good for the call.
How to Display Dynamic Content Inside Views
Jun 12, 2014.
This article provides a brief idea of how to add dynamic content inside a view.
Partial Reload in QlikView: Part I
Apr 23, 2014.
This article describes how a Partial Reload will work for the current script when loading tables in a QlikView application.
Collect Form Data From Both Main and Partial View in MVC
Apr 17, 2014.
In this article, you will learn how to collect form data from both main and partial views.
Display Partial View and View Using AJAX in MVC
Apr 07, 2014.
In this article, I am describing about partial view and view using AJAX in MVC.
Partial Class In C#
Mar 15, 2014.
In this article, we will learn about partial classes of C#.
Types of Classes in C#
Feb 25, 2014.
In this article we will learn about various types of classes in C#.
Include Multiple Partial Templates in Single Application Using Ng-Template and Config
Feb 05, 2014.
This article explains how to include multiple Partial Templates in a single application using ng-Template and Config.
Rendering a Partial View and JSON Data Using AJAX in ASP.Net MVC
Jan 23, 2014.
This article explains how to render a partial view and JSON data using AJAX.
Difference Between a Postback and a Callback in ASP.Net
Nov 18, 2013.
Here is a good explanation of the difference between a Postback and a Callback in ASP.Net.
Partial Classes In C# with Real Example
Oct 23, 2013.
C# Partial Class. Partial classes were introduced in C# 2. A C# Partial class can reside in multiple cs files with the same name. C# partial classes code examples.
Partial Method in C#
Oct 09, 2013.
How to implement partial method in C#. A partial method can be used as a definition in one part while another part can be the implementation.
Displaying Partial View On Condition in Web API
Sep 26, 2013.
This article explains how to create and display partial views conditionally in an ASP.NET MVC Web API application. By selecting a value from a drop-down list and submitting it, the corresponding partial view is displayed. It covers creating controllers, partial views, and implementing conditional logic in the view.
How To Load Partial Views In ASP.NET MVC Using jQuery Ajax
Sep 12, 2013.
In this article, we'll discuss partial views in ASP.NET MVC and loading them via jQuery AJAX.
Partial Classes in C#
Sep 06, 2013.
This article explains partial classes in C# and .NET.
Partial View in ASP.Net MVC
Aug 07, 2013.
This article explains partial views in ASP.NET MVC.
Auto Refresh Partial View in ASP.Net Web API
Aug 05, 2013.
This article explains the Auto Refresh Partial View in the ASP .NET Web API.
Explicit Post Back to Server Using JavaScript
Apr 26, 2013.
This article is intended for those with a basic understanding of ASP.Net Server Controls and JavaScript.
Optimizing ASP.NET MVC Applications with Output Caching
Mar 15, 2013.
In this article you will learn everything about Output Caching in MVC. Output Caching enables us to cache the content returned by any controller method so that the same content does not need to be generated each time the same controller method is invoked.
List Controls in ASP.NET: Part 5
Nov 10, 2012.
This is my series of List Controls Articles and in this part we will discuss how to enable Automatic PostBacks.
Partial View in MVC
Oct 24, 2012.
Partial View allow us to put HTML and C# code into a file that we can reuse across multiple other views. This is very useful when you work on a large application.
4 Real Time Use of Partial Classes and Partial Method
Jan 13, 2012.
Learn how to leverage partial classes and partial methods in real-time applications with C#. Explore their use for modular design, event-driven programming, and code organization. Discover how they enhance extensibility and simplify code maintenance in software development.
Create partial view in ASP.NET MVC 3 application
Dec 26, 2011.
This is the simple application for beginners that help how to create the partial view in ASP.NET MVC 3 application. This article also help how to display the person details used MVC 3 tools.
What is PostBack in ASP.NET
Oct 22, 2011.
PostBack is the name given to the process of submitting an ASP.NET page to the server for processing.
Partial Classes In C#
Jun 20, 2011.
In this quick article you will take a look at Partial Classes in C#.
Partial Page Caching in ASP.Net MVC 3 Razor With Entity Framework
May 23, 2011.
In this article I will describe how to do partial page caching in ASP.Net MVC3 Razor.
Looking deep inside PostBack and ViewState in ASP.NET 3.5
Mar 07, 2011.
In ASP.NET 3.5, PostBack and ViewState play crucial roles in managing web form data between client and server during the page lifecycle. PostBack handles user-triggered events by sending requests to the server, while ViewState maintains state information across page loads, ensuring seamless data management.
Saving DropDownList Selected Value Across PostBack in MVC
Mar 04, 2011.
How to get a drop down list with the selected value across the Post back.
ASP.NET Page Life Cycle Events
Nov 09, 2010.
In this article, I will discuss in detail the ASP.NET page life cycle events.
How to: Create multiple rows of controls in ASP.Net
Jun 09, 2010.
This articles illustrates how to create multiple rows of controls in an asp.net web page dynamically using C# code with the help of a Panel, table, Session and ViewState.
AJAX History in ASP.NET AJAX 3.5 SP1
Apr 05, 2010.
In this article I have explained how to tackle the problem of postback using update panel in AJAX.
Detecting Refresh or Post back in ASP.NET
Mar 28, 2010.
There are situations where we would like to detect if the post back is from a form interaction (i.e. submit or button clicks) or is it by hitting the browser F5 refresh button.
Partial Caching using dependencies and TimeSliding Expiration
Mar 23, 2010.
This article is intent to show you how to use Page.Cache class of System.Web.Caching.Cache with partial caching.
Understanding the Page Life Cycle of an ASP.NET and its controls
Sep 02, 2009.
In this article I will explain about series of steps and events that occur in a page life cycle in ASP.NET.
Disable an ASP.NET button during PostBack with AJAX loading background image
Aug 22, 2009.
An article on how to disable the button control during PostBack.
Ajax with Postback Ritalin
Aug 01, 2009.
Recently I noticed a simple and nice control giving more functionality to partial postback, it is Postback Ritalin. This is built on top of ASP.NET Ajax extensions and offers a nice solution to a common problem i.e. disabling button during partial postbacks.
Using partial class, when working with LINQ to SQL Stored Procedures
Jul 30, 2009.
In this article I will explain how you can combine using of your own classes to DataContext (dbml file) and partial DataContext class, when working with LINQ to SQL Stored Procedure.
How to Preserve Password in a TextBox between Page Postbacks
May 15, 2009.
This quick tip shows how you can preserve a password in a TextBox between page postbacks.
Implementing Client Callbacks Programmatically without Postback
May 12, 2008.
This article help web developers to use CallBack instead of Ajax in some important issues like Updatable Data Source.
ASP.NET HTML Postback Custom Control
Mar 01, 2007.
Web form controls do not offer a complete solution to ASP.Net design and hence HTML tags are still required. Occasionally the need exists for a postback from an HTML tag, this article presents a Custom Control to address this requirement.
Maintain Scroll Position on Postback in ASP.NET 2.0
Jan 01, 2007.
This article shows how to allows pages to automatically maintain the current scroll position across postbacks.
Atlas - Asynchronous Partial Page Rendering in ASP.Net
Aug 23, 2006.
In this article we will take a look at the partial page rendering feature provided by the Atlas UpdatePanel control. We will go through the features of UpdatePanel control and code samples for using the features in various scenarios.
Cross Page Postback in ASP.Net 2.0
Aug 11, 2006.
In ASP.Net 2.0, cross-page post backs allow posting to a different web page, resulting in more intuitive, structured and maintainable code. In this article, we will explore the various options and settings for the cross page postback mechanism.