Create Connection String in C# and VB.Net
Here Mudassar Ahmed Khan has explained with an example, how to create Connection String in C# and VB.Net. This article will illustrate how to create connection string for Windows and SQL Server based...
View ArticleASP.Net MVC: Insert data into Database using Web API and Entity Framework
Here Mudassar Ahmed Khan has explained with an example, how to insert data into Database using Web API and Entity Framework in ASP.Net MVC Razor. When the Add Button is clicked, the InsertCustomer...
View ArticleCall (Consume) Web API GET method in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how call (consume) Web API GET method in ASP.Net MVC Razor. The Web API Action method will be called inside the MVC Controller’s Action method...
View ArticleASP.Net MVC: Update data into Database using Web API and Entity Framework
Here Mudassar Ahmed Khan has explained with an example, how to update data into Database using Web API and Entity Framework in ASP.Net MVC Razor. When the Update Button is clicked, the UpdateCustomer...
View ArticleCreate and consume Web API POST method in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to create and consume a Web API POST Action method in ASP.Net MVC Razor. This article will illustrate how to create a POST Action method in...
View ArticleCall Web API from MVC Controller in same Solution (Project)
Here Mudassar Ahmed Khan has explained with an example, how to call Web API from MVC Controller in same Solution (Project) in ASP.Net MVC Razor. This article will illustrate how to call a Web API...
View ArticleCall (Consume) Web API from MVC Controller using HttpClient
Here Mudassar Ahmed Khan has explained with an example, how to call (consume) Web API from MVC Controller using HttpClient class in ASP.Net MVC Razor. This article will illustrate how to call a Web API...
View ArticleCreate and consume Web API PUT method in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to create and consume a Web API PUT Action method in ASP.Net MVC Razor. HTTP PUT method is used to update an existing record in the data in...
View ArticleASP.Net MVC: Delete data from Database using Web API and Entity Framework
Here Mudassar Ahmed Khan has explained with an example, how to delete data from Database using Web API and Entity Framework in ASP.Net MVC Razor. When the Delete Button is clicked, the DeleteCustomer...
View ArticleCreate and consume Web API DELETE method in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to create and consume a Web API DELETE Action method in ASP.Net MVC Razor. This article will illustrate how to create a DELETE Action method...
View ArticleWeb API: Save (Upload) image to Server in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to save (upload) Image files to Server using Web API in ASP.Net MVC Razor. The Image files will be uploaded to Web API and then inside the...
View ArticleWeb API Database example in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to create and consume a Web API that gets data from SQL Server Database in ASP.Net MVC Razor. This article will illustrate how to connect a...
View ArticleASP.Net C#: Upload Files using Web API in MVC
Here Mudassar Ahmed Khan has explained with an example, how to upload files using Web API and C# in ASP.Net MVC Razor. This article will illustrate how to send (upload) files by calling the Web API...
View ArticleWeb API: Save (Upload) image to Database in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to save (upload) Image files to Database using Web API in ASP.Net MVC Razor. The Web API will insert and retrieve Image files from SQL Server...
View ArticleASP.Net Core Razor Pages: Export to Excel
Here Mudassar Ahmed Khan has explained with an example, how to export to Excel file in ASP.Net Core Razor Pages. The data from the database is fetched using Entity Framework and then the data is...
View ArticleDownload PDF File on Button Click using JavaScript
Here Mudassar Ahmed Khan has explained with an example, how to download PDF File on Button click using JavaScript. The PDF file will be downloaded as BLOB using XmlHttpRequest AJAX call and then will...
View ArticleDownload PDF File on Button Click using jQuery
Here Mudassar Ahmed Khan has explained with an example, how to download PDF File on Button click using jQuery. The PDF file will be downloaded as BLOB using jQuery AJAX and XmlHttpRequest (XHR) and...
View ArticleASP.Net Core Razor Pages: Display List of Files from Folder (Directory)
Here Mudassar Ahmed Khan has explained with an example, how to display List of files from Folder (Directory) on Server's Disk in View in ASP.Net Core Razor Pages. The Files can also be downloaded from...
View ArticleASP.Net Core Razor Pages: Download Files from Folder (Directory)
Here Mudassar Ahmed Khan has explained with an example, how to download files from Folder (Directory) on Server's Disk in View in ASP.Net Core Razor Pages.
View ArticleDownload File as BLOB using AJAX and jQuery
Here Mudassar Ahmed Khan has explained with an example, how to download file as BLOB using AJAX and jQuery. The PDF file will be downloaded as BLOB using jQuery AJAX and XmlHttpRequest (XHR) request...
View Article