Session In ASP.NET MVC
As we all know that HTTP Protocol is a stateless protocol which means that it can’t store the data of the previous page. So to maintain the state we use Session and Cookie.
As we all know that HTTP Protocol is a stateless protocol which means that it can’t store the data of the previous page. So to maintain the state we use Session and Cookie.
In this article, we learn how to integrate Google Drive API in MVC Project and use the function for upload file, create folder, upload file in folder, move files, rename files or folders, create folder within another folder, get all files, get files from a specific folder, delete files, etc.,
In this article, we will learn about HTML Helpers. ASP.NET provides various HTML Helpers using which we can bind our Model to HTML view. There are two types of HTML Helpers like Simple and Strongly Typed HTML Helpers.
In this article, we will learn different ways of binding data in the dropdown list with ASP.NET MVC 5. There are many ways to bind data like Viewbag, ViewData, TempData, jQuery, etc. Here we will learn 5 methods to bind data with the dropdown list.
In this article, we will learn about using query string in ASP.NET MVC with example. Generally, the query string is used to pass data from one page to another page using URL. The data passed using query string are visible in the browser.
Partial View is a special type of view provided by ASP.NET MVC 5 which resides upon the View. In short, we can divide the large view into small parts and can render it using a partial view. The partial view can be reusable in multiple views and helps us to minimize code duplication.
In this article, we will discuss how to integrate the Datatable plugin in ASP.NET MVC 5 with server-side pagination and ordering, sorting and searching.
As file upload is the basic need for all the applications. We will learn how to upload a file using ASP.NET MVC 5 using the Razor view.
As the craze of ASP.NET MVC is increasing, many new developers and students are moving towards learning ASP.NET MVC. As the project contains lots of folders so to understand this, we have created this Article which focuses on explaining the folder structure of the new MVC 5 project.
In this article, we will discuss ASP.NET MVC. MVC stands for Model-View-Controller and it is a framework for developing web applications which have become so popular these days. Earlier developers would go for ASP.NET to create a web application, MVC is an extension to it.