TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About ViewData
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Zain Ul Hassan (4)
George (3)
Vijay Prativadi (2)
Akshay Patel (2)
Pradeep Yadav (1)
Chetan Nargund (1)
Manish Kumar Choudhary (1)
Sandeep Sharma (1)
Mudita Rathore (1)
Rupesh Kahane (1)
Sandeep Singh Shekhawat (1)
Rohatash Kumar (1)
Jitendra Mesavaniya (1)
Ziggy Rafiq (1)
Amit Mishra (1)
Abhimanyu K Vatsa (1)
Sardar Mudassar Ali Khan (1)
Mohit Kala (1)
Ankur Mistry (1)
Khaja Moizuddin (1)
Farhan Ahmed (1)
Usama Shahid (1)
Akshay Phadke (1)
Nitin (1)
Amit Kumar (1)
Anoop Kumar Sharma (1)
Vithal Wadje (1)
Nitin Pandit (1)
Shridhar Sharma (1)
Abhishek Jaiswal (1)
Atul Rawat (1)
Harpreet Singh (1)
Sachin Kalia (1)
Related resources for ViewData
No resource found
View Variables In .NET MVC
8/16/2024 2:23:27 PM.
This article discuss the View Variables, such as ViewData, ViewBag, TempData and Session in MVC
Using Peek And Keep In TempData In ASP.NET MVC
8/7/2024 10:48:09 AM.
TempData in ASP.NET MVC is used to pass data between actions or controllers and can persist data across requests. Unlike ViewData and ViewBag, which only last for a single request, TempData can mainta
ViewData, ViewBag, And TempData In ASP.NET MVC
6/19/2024 11:55:19 AM.
This article explains ViewData, ViewBag, and TempData in ASP.NET MVC for data transfer between Controller and View. ViewBag and ViewData work within a single request, while TempData persists data acro
How to Add jQuery Datepicker in MVC
6/6/2024 11:44:19 AM.
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 A
Passing Data From Controller to View in ASP.Net MVC
5/29/2024 7:29:02 AM.
This article explains how to use ViewBag, ViewData, and TempData to pass data from a Controller to a View in ASP.NET MVC. Learn to implement these techniques in Visual Studio, understand their differe
Various Ways For Passing Data to View in Web API
5/28/2024 11:25:23 AM.
Explore various methods for passing data to views in Web API. Techniques include using ViewModels, data transfer objects, and JSON serialization. Utilize query parameters, route parameters, and reques
Passing Data From Controller To View Using Session - Part Five
5/27/2024 12:00:32 PM.
In this article, you will learn how to pass strongly typed data from Controller to View using session, in which firstly, you should make a model class then populate its properties with some data then
Multiple Ways To Bind Data To Kendo Grid In MVC
5/2/2024 9:49:15 AM.
Discover various methods to bind data to Kendo Grid in MVC. From server-side binding with IQueryable to client-side binding via AJAX and JSON, explore options like DataSource, ViewData, or ViewModel f
Passing Data From Controller To View With ViewBag - Part Three
5/1/2024 11:34:18 AM.
This article will tell you almost everything about passing data from Controller to View in ASP.NET MVC using ViewBag. I am writing this article to tell you the basic to advance concepts about ways to
Passing Data From Controller To View With ViewData - Part Two
5/1/2024 11:04:07 AM.
This article will tell you almost everything about passing data from Controller to View in ASP.NET MVC using ViewData. I am writing this article to tell you the basic to advanced concepts about ways t
Passing Data From Controller To View - Part One
5/1/2024 11:03:17 AM.
This article will tell you almost everything about passing data from Controller to View in ASP.NET MVC. I am writing this article to tell you the basic to advanced concepts about ways to pass data fro
Displaying Data On View From Controller
4/1/2024 12:01:36 PM.
In ASP.NET MVC, data from a controller can be displayed on a view using various methods like ViewData, ViewBag, or strongly-typed models. Controllers pass data to views, leveraging Razor syntax to bin
Various Ways to Pass Data From Controller to View in MVC 4
4/1/2024 11:52:59 AM.
In this article, we will discover the myriad ways to transfer data between controllers and views in MVC 4. Explore techniques like ViewBag, ViewData, TempData, Models, and ViewModel for efficient comm
ViewData vs ViewBag vs TempData vs Session in .NET
3/30/2024 7:23:02 AM.
In ASP.NET, passing data between controllers and views is a common requirement for building dynamic web applications. ASP.NET provides several mechanisms for achieving this, including ViewData, ViewBa
Passing Data from ASP.NET Core MVC to JavaScript: A Guide to Using ViewBag and ViewData
3/20/2024 4:23:08 PM.
Get ready to learn how to pass data from ASP.NET MVC to JavaScript with ease. In this comprehensive guide, Ziggy Rafiq will show you exactly how to use ViewBag and ViewData to make the process seamles
ASP.NET MVC - Passing Data From Controller To View
10/10/2023 11:42:28 AM.
Passing data from a controller to a view is a fundamental aspect of ASP.NET MVC development, enabling seamless communication between the application's logic and its user interface. This process in
Various Ways to Pass Data From Controller to View in MVC
10/9/2023 11:31:47 AM.
In this article, we discuss how Controllers interact with Views and how you can pass data from a Controller to a View to render a response back to a client.
Difference Between ViewBag, ViewData, & TempData
7/5/2023 6:19:37 AM.
In the context of ASP.NET MVC or ASP.NET Core, ViewBag, ViewData, and TempData are mechanisms for passing data between a controller and a view
Pass Data Across Views In .NET MVC
1/7/2023 11:50:51 AM.
In this article, you will learn how to pass data across views in MVC.
Data Sharing Techniques In MVC
8/28/2022 6:08:53 AM.
In this article, you will learn about Data Sharing Techniques in MVC.
View Variables In .NET Core MVC
8/8/2022 4:31:12 AM.
This article discuss View Variables In .NET Core MVC, such as ViewBag, ViewData, TempData, and Session.
Passing Data Using ViewData, ViewBag, TempData, Session Variables In ASP.NET MVC
1/12/2021 7:50:00 AM.
In this article we will learn passing data using ViewData, ViewBag, TempData, and Session Variables in ASP.NET MVC.
ViewData, ViewBag & TempData in ASP.NET MVC 5
11/4/2019 8:17:53 AM.
In this article, we will see different ways of passing the Model data from Controller to View or .cshtml file in ASP.NET MVC 5.
Learn About ViewData, ViewBag And TempData In ASP.NET MVC
8/6/2019 7:49:32 AM.
In this article, you will learn about ViewData, ViewBag and TempData in ASP.NET MVC.
What is ViewData?
12/4/2018 5:11:04 AM.
This article demonstrates an interesting and very useful concept ViewData in ASP.NET MVC. What is ViewData.
ViewBag, ViewData And ViewModel In ASP.NET
10/11/2018 4:07:30 AM.
Earlier in our previous articles, we created this action to display the student record. In this action we passed model to our view by passing an argument to a view method
ViewData Samples in MVC: Day 1
8/14/2018 4:50:31 AM.
This article describes ViewData in MVC. Viewdata maintains data when you move from a controller to a view.
Understanding ViewData And ViewBag In MVC
7/7/2016 12:28:30 AM.
In this article you will learn about viewdata and viewbag in MVC.
How To Use ViewData, ViewBag And TempData in MVC
5/29/2016 2:52:15 PM.
In this article we will see how to use ViewData,ViewBag and TempData in MVC.
ViewData Vs ViewBag Vs TempData
4/24/2016 7:58:32 PM.
In this article we are going to differentiate between ViewData,ViewBag and TempData .
Passing Data From Controller To View In ASP.NET MVC
4/11/2016 1:14:24 PM.
In this article, we will learn how to pass data from Controller to View in ASP.NET MVC using ViewData and ViewBag.
ViewData In ASP.NET MVC 5
4/1/2016 7:24:15 AM.
In this video tutorial we will learn about What is ViewData in MVC , How to declare ViewData and How to access ViewData Values
Using TempData, ViewData And ViewBag In ASP.NET MVC 5.0: Part 11
3/4/2016 9:50:01 AM.
In this article I’ll tell you how to use TempData, ViewData and ViewBag in ASP.NET MVC 5.0 and also what the differences are among them.
Passing Data From Controller To View Using Viewdata In ASP.NET MVC 5
10/3/2015 8:53:26 AM.
In this article, we will do a simple demo to understand how we can move data over model, controller and view.
Terminologies in MVC: Part 1 (ViewData, ViewBag, TempData)
3/21/2015 4:14:55 AM.
In this article we learn about the ViewData, ViewBag, TempData in the MVC.
Difference Between ViewData, ViewBag, TemData and Session in MVC
3/3/2015 7:02:27 AM.
This article shows how to pass a data controller to a view using ViewData, ViewBag, TempData and Session in MVC and the differences.
ViewBag and ViewData in MVC
2/20/2015 10:18:09 PM.
This article explains the two view objects used to pass data from a controller to a view.
Datatable in ViewData Sample in MVC - Day 3
7/29/2014 6:29:37 AM.
This article describes how to pass an entire datatable from controller to view.
Practical Usage of TempData and ViewData and Differences in MVC 3
1/21/2014 9:31:27 PM.
Here, I’ll use a sample application to show how the TempData and ViewData properties work.
Let's Dig Out What's ViewData, ViewBag and TempData!!!!
11/13/2011 6:06:01 AM.
This article provide basic 101 information on how we can wrap up the data from controller and pass on to view where it should be render across web browser.