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 .net Web API
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mudita Rathore (70)
Vithal Wadje (2)
Sardar Mudassar Ali Khan (2)
Satyaprakash Samantaray (2)
Nimit Joshi (2)
Sachin Kalia (1)
Umesh Mandal (1)
Lalit Kumar (1)
Sandeep Singh Shekhawat (1)
Raj Kumar (1)
Sanwar Ranwa (1)
John Kocer (1)
Kiran B S (1)
Gaurav Kumar Arora (1)
Imran Ghani (1)
Yogeshkumar Hadiya (1)
Vignesh Mani (1)
Mukesh Kumar (1)
Santosh Karanam (1)
Yousef Shawareb (1)
Rijwan Ansari (1)
Sakhile Msibi (1)
Pradeep Shet (1)
Ramasagar Pulidindi (1)
Aravind Bs (1)
Priti Kumari (1)
Sourav Kayal (1)
Related resources for .net Web API
No resource found
Creating ASP.NET Web API REST Service
8/22/2024 12:28:51 PM.
In this article we will learn how to create ASP.NET Web API Service.
Choosing ASP.Net Web API or WCF
6/12/2024 7:33:46 AM.
Understand the transition from WCF to ASP.NET Web API, emphasizing HTTP-centric design, simplicity, and coexistence. ASP.NET Web API targets HTTP services, supporting diverse client bases including ri
Login And CRUD operations In ASP.NET Web API Using Angular 9 Web Application
6/5/2024 11:33:20 AM.
Learn to build a full-stack application with ASP.NET Web API and Angular 9. Perform login and CRUD operations using SQL Server. Utilize Angular Material for UI and Bootstrap for styling. Follow step-b
Hosting ASP.NET Web API REST Service On IIS 10
6/4/2024 9:47:46 AM.
Hosting an ASP.NET Web API REST service on IIS 10 involves configuring the server to deploy and manage the service. By leveraging Internet Information Services (IIS) 10, developers can deploy and main
REST Service in ASP.NET Web API
5/8/2024 9:50:41 AM.
Learn to build RESTful services with ASP.NET Web API. Explore HTTP methods, routing, JSON serialization, DTOs, attribute routing, content negotiation, and error handling for robust APIs. Dive into pra
How To Enable HTTPS In ASP.NET Web API
5/7/2024 11:23:49 AM.
In this article, you will see How we can enable https in ASP.Net Web API. We will start by discussing all the steps required to enable https in asp.net web API. And then we will discuss all the steps
Publish And Host ASP.NET Web API
5/2/2024 7:23:37 AM.
Learn how to publish and host your ASP.NET Web API using IIS or Azure App Service. This guide covers deployment methods, including Visual Studio publishing, setting up IIS configurations, and leveragi
Session Management In ASP.NET Web API
5/1/2024 5:42:33 AM.
Session Management in ASP.NET Web API involves handling user sessions, state, and security. It encompasses implementing authentication, authorization, and token-based security to manage user sessions
Pass Multiple Parameters in URL in Web API
4/29/2024 10:02:24 AM.
Learn how to efficiently pass multiple parameters in URLs when developing ASP.NET Web API applications. Explore techniques such as using query parameters, route parameters, and model binding to handle
ASP.NET Web API CRUD Operations
4/23/2024 7:28:31 AM.
ASP.NET Web API facilitates Create, Read, Update, and Delete (CRUD) operations over HTTP. Utilizing HTTP methods like GET, POST, PUT, and DELETE, it interacts with data using JSON/XML serialization.
File Upload using ASP.NET Web API And ReactJS
4/12/2024 6:33:22 AM.
Learn to integrate file upload functionality between ASP.NET Web API and ReactJS using Axios or HttpClient for backend communication. Utilize FormData for multi-part form data handling.
Getting Started With ASP.NET Core And jQuery CRUD Using WEB API
2/9/2024 7:23:23 AM.
A lab exercise for you to demonstrate what have you learned from this training material to create your own Todo CRUD operation using TodoRepository included in this training material.
JWT Authentication Using Refresh Token Series - 1 [Login Feature] In .NET Core 6.0-ADO.NET-SQL
1/10/2024 10:39:54 AM.
In this series of articles, we'll focus on a hands-on, practical implementation of JWT authentication with refresh tokens in .NET Core 6.0 using ADO.NET and SQL, emphasizing real-world scenarios a
Retrieve Data From Database in ASP.Net Web API
11/22/2023 6:45:38 AM.
This article explains how to retrieve data from the database in the ASP. NET Web API.
How to Consume ASP.Net WEB API From ASP.Net MVC4 Using RestSharp
8/25/2023 9:30:35 AM.
This article explains how to call APIs hosted on another server (as REST services only) from ASP.NET MVC4 (as a client) using RESTSHARP.
Including And Excluding Properties from Model Binding Using Interfaces
7/6/2023 8:59:08 AM.
You can specify distinct interfaces for various sets of characteristics and have your model implement those interfaces if you want to include or omit certain properties from model binding. After that,
Including And Excluding Properties from Model Binding Using the Bind Attribute
7/6/2023 8:55:53 AM.
Using the 'Bind' feature in ASP.NET MVC, you can include and exclude properties from model binding. You can specify which attributes should be included or excluded during model binding using t
Create Asynchronous Action Method in Web API
6/27/2023 12:32:57 PM.
This article explains the Asynchronous Action method and how to create it in the Web API.
Exception Handling in ASP.Net Web API Using Exception Filters
5/24/2023 8:21:47 AM.
This article exlains how to ue Exception Filters for exception handling in the ASP.NET Web API.
Create Simple Model Using ASP.Net Web API
6/22/2022 9:10:31 AM.
In this article, I will discuss the simple model in ASP.Net.
Customize Swagger UI In ASP.NET Web API Restful Service
6/22/2022 9:07:35 AM.
Swagger UI is very powerful documentation tool for Restful services so lets learn how we can implement and customize in Web API Restful service.
Create ASP.NET Core Web API With Entity Framework Code First Approach
6/22/2022 6:54:05 AM.
In this article we are going to create WEB API in ASP.Net core using Entity Framework Core’s Code first approach. In this we are creating a simple crud operation of employees and test it using Swagger
Introducing ASP.Net Web API 2- Adding Controller: Day 2
6/22/2022 6:52:04 AM.
This article describes how to create an empty ASP.NET Web API 2 Controller and by using jQuery we can call the Web API in the web form.
Introducing ASP.Net Web API 2: Day 1
6/22/2022 6:49:29 AM.
This article provides a basic introduction to the latest ASP.NET Web API 2 Project Template in Visual Studio 2013.
Testing of ASP.Net Web API Method
6/22/2022 5:45:10 AM.
This article explains how to perform testing of the ASP. NET Web API methods using Fiddler.
Create Simple Web API In ASP.NET MVC
6/22/2022 5:40:46 AM.
Web API provides data transfer between data sources and applications. In this Web API Tutorial, learn how to create a simple C# Web API using ASP.NET.
Getting Started With Web API With Sample Application
6/22/2022 5:09:05 AM.
In this Web API tutorial, you'll learn how to create an ASP.NET Web API using C# and how to use it in an ASP.NET Web application.
Introduction To .Net Web API HTTP Codes
5/17/2022 12:39:02 PM.
In Web API response it is very import to handle appropriate response codes to enhance the user experience in the website. This article gives extensive list of Status codes that can be handled in the w
Implement Swagger UI In ASP.NET Web API Restful Service For Documentation Using Swashbuckle
2/28/2022 1:23:02 PM.
Swagger basically is a framework for describing, consuming, and visualizing RESTful APIs. The nice thing about Swagger that it is really keeps the documentation system, the client, and the server code
How To Consume Web API In An ASP.NET Gridview Using HttpClient
11/24/2021 4:27:57 AM.
In this article, you will learn how to consume Web API in an ASP.NET GridView using HttpClient.
Getting Started With ASP.NET Web API .NET 5
9/27/2021 1:39:44 PM.
The ASP.NET web API is .net framework for building or developing RESTFUL API with HTTP based services which can be accessed via any applications. This web API can communicate with a wide range of clie
Build A ToDo List Application Using .NET 5.0 Web API And Microsoft SQL Server
9/17/2021 2:06:03 PM.
The article shows how to build a ToDo list application using .Net 5 Web API, Jwt authentication and AspNetCore Identity.
Looking at the ASP.Net Web API
6/8/2021 9:07:27 AM.
This articles describes the scalable architecture for building the services that build on the HTTP.
Using Query Operators in ASP.Net Web API2
6/4/2021 7:49:22 AM.
This article explains how to use the Query Operators in Web API2 for filtering the data. For this we need to make the Web API method a Queryable method.
ASP.Net WEB API Against WCF
5/31/2021 6:34:01 AM.
In this article, we will try to understand the concept of the ASP.NET Web API along with examples of creating a WebAPI and consuming it step-by-step.
Difference Between JSON Date in ASP.Net MVC and Web API
5/27/2021 10:27:22 AM.
This article explains the difference between JSON dates in ASP.NET MVC and the Web API. The Web API and ASP.NET MVC use different JSON serializers.
Create AJAX Call in ASP.Net Web API
5/27/2021 9:46:53 AM.
In this article, we will use the Ajax calls and HttpRequests to the domains to create an AJAX request that would be considered cross-domain between these two application.
Create Read/Write Web API and Cunsume It By HTML Client
5/27/2021 9:35:26 AM.
In this article, I will create a Read/Write API and consume it by a HTML client.
Create Read-Only Web API Application
5/26/2021 9:27:47 AM.
In this article, I will create a read-only Web API. In this tutorial we will only implement the ReadOnly Method, that is a GET method.
CRUD Operations in ASP.Net Web API Using Fiddler Tool
5/26/2021 7:22:07 AM.
In this article, we will do Create, Read, Update and Delete (CRUD) operations in the WebAPI using the Fiddler Tool.
Use of Tracing in Web API2
5/25/2021 5:25:27 AM.
This article explains how to do tracing in Web API 2. Tracing is used for finding the ITracewriter instance.
Create An App Using Angular 10, .NET Core Web API And SQL Server
4/21/2021 4:26:47 PM.
In this article, you will learn how to create an App using Angular 10, .NET Core Web API and SQL Server.
Simple Way to Create RSS Feed With Web API
4/20/2021 5:27:47 AM.
This article describes how to implement a RSS feed with the Web API.
How ASP.Net Web API Works
4/19/2021 11:02:23 AM.
This article explains how the Web API works. Here you will see the application layer of the API , the MVC architecture and the Web API architecture.
Debug RESTful Web API Application on REST Client
4/13/2021 6:39:16 AM.
This article explains the REST Client Debugger. It is used for debugging the RESTful Services of a Web API application.
Put and Delete Methods in ASP.Net Web API
4/13/2021 5:41:50 AM.
In this article, I will explain the HTTP Put and Delete methods.
A New Way to Send Response Using IHttpActionResult
4/13/2021 5:36:48 AM.
In this article, we will see how the ASP.NET Web API converts the return value from a controller into an HTTP response message.
Content Validation in Web API
4/6/2021 11:39:53 AM.
This article explains the Content Validation in the Web API.
Features of ASP.Net Web API2
4/6/2021 11:30:53 AM.
This article explains the features of the ASP.NET Web API2.
Get Details of Facebook Account in Web API
4/6/2021 11:10:45 AM.
This article explains how to get the number of shared, number of likes, number of comments, number of clicks and the total number of counts of a Facebook account.
Bind A Google Chart With WebGrid in Web API
4/6/2021 10:56:59 AM.
This article describes how to bind Google Chart in a WebGrid.
Validation Using Data Annotations Attribute
4/6/2021 10:44:03 AM.
In this article, I am going to describe the Validation by using the Data Annotation.
Using ASP.Net Web API Methods in MVC4
4/6/2021 10:38:13 AM.
In this article, we will define the methods of a Web API service.
Create REST Services With Attribute Routing in Web API2
4/6/2021 10:12:45 AM.
This article explains the Representational State Transfer (REST) services with the attribute routing.
Page Grid in ASP.Net Web API
4/6/2021 6:59:37 AM.
This article describes how to create a page grid in the ASP.NET Web API.
Display AutoSuggest Textbox in Web API
4/6/2021 6:46:58 AM.
This articles describes the Auto Suggested TextBox in the Web API.
ASP.Net Web API CORS Supporting Using the Nightly Builds
4/6/2021 6:37:48 AM.
In this article, I will explain how to use the Package Microsoft.AspNet.Cors from the nightly builds.
Using Entity Framework in Web API Part-3
4/6/2021 6:11:14 AM.
This article explains how to add a view for adding the HTML code.
Brief Introduction To Attribue Routing In Web API2
4/6/2021 6:00:26 AM.
This article explains the brief description of the Attribute routing in Web API2.
How Routes Work in Web API
4/6/2021 5:55:44 AM.
In this article, I will define how routes work including a simple example.
Let's Start With the ASP.Net Web API2
4/6/2021 5:46:46 AM.
In this article, I will use Web API2. It explains how to create your Web API2 Application in Visual Studio 2013.
Implementation of Dependency Injection in Web API
4/6/2021 5:37:08 AM.
In this article, I will show you a simple implementation of Dependency Injection in the Web API.
Move Tooltip With Mouse or Cursor by Using jQuery in Web API
4/6/2021 4:44:00 AM.
This article describes how to move a Tooltip by moving the cursor using jQuery.
Creating a Sortable List in Web API Using jQuery
4/6/2021 4:39:49 AM.
This article shows how to create a sortable item list.
Modal Popup Effect Using JavaScript and CSS in Web API
4/2/2021 11:40:39 AM.
In this article, I will show you the model Popup effect by using JavaScript and CSS in Web API.
Using $select in ASP.Net Web API2 OData
4/2/2021 11:17:11 AM.
This article explains how to use $select in ASP.NET Web API OData.
Learn About ASP.Net Web API 2
4/2/2021 11:12:51 AM.
This article explains the Web API 2; the Controller, Model class and how to run this application on Fiddler.
Routing and Action Selection in ASP.Net Web API
4/2/2021 11:05:09 AM.
This article is about routing and action selection in the ASP.NET Web API.
Perform Validation on Form Using Data Annotation in MVC4 Web API
4/2/2021 10:53:09 AM.
This article explains the Data Annotation property for doing validation.
jQuery UI Tooltip With Web API
4/2/2021 10:43:14 AM.
In this article, I will tell you how can we use the jquery UI Tooltip with Web API.
Introduction and Implementation of Windows Azure in ASP.NET Web API
4/2/2021 10:37:57 AM.
In this article, you will learn about Windows Azure and how you can add it to your ASP. NET Web API.
Using Entity Framework in Web API Part-2
4/2/2021 10:35:55 AM.
In this article, we will discuss how to add the Web API Controller with Entity Framework.
Add FaceBook Like Box in Web API Application
4/2/2021 10:27:32 AM.
This article explains you how to implement the FaceBook Like Box in Website.
Creating ASP.Net Web API With EF Database
4/2/2021 10:20:54 AM.
In this article, we will see how to create the ASP. NET Web API With an Entity Framework (EF) Database.
GET Method in Web API Using JavaScript
4/1/2021 11:46:13 AM.
In this article, you will learn about the GET method in Web API 2.
Change The LayoutPage At Runtime in ASP.Net Web API
4/1/2021 11:20:09 AM.
In this article, I will show you to change the layout page at runtime in Web API.
Process of Installing the Nuget Package Manager in ASP.NET Web API
4/1/2021 10:07:22 AM.
In this article, we will define what the NuGet Package Manager is and how to install it in the ASP.NET Web API.
Get the XML Output By Using the SelfHosting URL in Web API
4/1/2021 8:56:54 AM.
In this article, you will see how to find the XML output on the self-hosting URL.
Using The LinqToQuerystring in Web API
3/26/2021 9:28:28 AM.
In this article, you will see the simple use of LinqToQuerystring in the Web API.
WebGrid Helper in ASP.Net Web API
3/26/2021 8:38:59 AM.
This article describes the WebGrid helper in the ASP.NET Web API.
Unit Test in ASP.Net Web API2
3/26/2021 7:23:29 AM.
This article explains Unit Testing in Web API2. Here we create a Web API application with a Unit Test project.
OData Endpoints in Web API
3/26/2021 7:15:43 AM.
This article explains OData Endpoints in the Web API.
Using JSON.NET With ASP.NET API
3/24/2021 12:19:45 PM.
In this article, we will define how to use the JSON.Net in ASP.Net in Web API.
Bind the Image With WebGrid in Web API
3/24/2021 12:11:58 PM.
This article describes you to bind the Image with WebGrid in Web API.
ASP.Net Web Form Web API Project Template
3/24/2021 12:03:50 PM.
In this article, you will learn about the Web form web API project Template.
Using Entity Framework in Web API Part-1
3/24/2021 9:52:43 AM.
This article explains the Entity Framework in the Web API.
Implement Facebook Comment API in Web API Website
3/24/2021 6:57:34 AM.
This article explains you how to implement the facebook comment API in to the Web site.
Using Web API With ASP.NET Web Forms
3/24/2021 5:53:06 AM.
In this article, we will define that how we can use Web API with ASP. Net Web Forms. For using the Web API in Web Forms There are various steps all these are as follows.
Create CheckBox List in Web API
3/24/2021 5:45:41 AM.
In this article, I am going to create a Checkbox List.
Process of Selecting Controller Method in ASP.NET Web API Framework
3/18/2021 5:53:53 AM.
In this article, we will define the process of selecting the controller method in the ASP. NET Web API.
Routing in ASP.NET Web API
3/17/2021 10:56:15 AM.
In this article, we will define how the ASP.Net Web API transfers the HTTP request to the controller.
Using Google Search API in ASP.Net Web API
3/17/2021 10:43:29 AM.
This article explains you how to use the Google Search API in the ASP.NET Web API.
Self-Hosting in ASP.Net Web API
3/17/2021 6:43:44 AM.
In this article, you learn about Self-Host, how we can Self-Host the ASP.NET Web API.
Show Confirm Box in Web API Using JavaScript
3/17/2021 5:13:09 AM.
This article provides an example of a confirmation box in the Web API.
Implement Facebook Follow Button in Web API Project
3/16/2021 8:37:54 AM.
This article explains how to add the Facebook Follow button to our web application.
OData Feed Using ASP.Net Web API
3/16/2021 5:32:24 AM.
This article describes the creation of an OData feed through the ASP.NET Web API.
Search Record and Display in WebGrid
3/16/2021 4:45:03 AM.
In this article, I am going to describe the search the record and display in the WebGrid in Web API.
Creating a User Control in Web API
3/12/2021 8:56:59 AM.
In this article, I will explain how can we create a User Control in Web API.
Attribute Routing in ASP.Net Web API
3/12/2021 8:50:09 AM.
This article provides a simple example of attribute routing in the Web API.
Unit Testing in Web API2 Using Entity Framework
3/12/2021 8:37:13 AM.
This article explains Unit Testing with Entity Framework in Web API 2, including how to modify the Scaffold Controller for passing the context object to the tests.