Category: ASP.NET MVC
Creating ASP.NET Web Service
ASP.NET Web Service – Web service is a software that is used to exchange XML-based information that uses the internet to interact with any other application called its client. This software provides a modular method that could be used by multiple applications through the web. For detailed information about Web Service visit this thread on WIKIPEDIA See tutorial below on
» Read moreRestful Web Services C# – ASP.NET Web API
ASP.NET Web API – In my previous blog ASP.NET Web Application using MVC I have created a simple project that explains how to create Restful Web Services(WEB API) using MVC default route. By this time I will create another project that will show you how to create ASP.NET API using API Controller class. This is the standard flow on creating
» Read moreRestful Web Services Tutorial with ASP.NET MVC
Restful Web Services Tutorial – From my previous Article on how to Create Web API in ASP.NET. We have created an API method that will return Hello + the name input by the user. Now in this article let’s consume that API using a client Application. Let’s start: – Restful Web Services Tutorial 1. Create a new ASP.NET MVC Web Application
» Read moreRest API Application – ASP.NET MVC
Rest API Application – ASP.NET WEB API is a framework that allows you to build an HTTP service. This service can be accessed online using HTTP requests. API’s can include all possible method that exposed data from a database. Like INSERT, SELECT, DELETE and UPDATE. And because API is an HTTP service its method is accessible using a URL. Let’s take a look at a simple example below
» Read moreASP.NET MVC Entity Framework:Code First Approach
ASP.NET MVC Entity framework code first approach allows you to create classes and use entity framework to generate your Table base on your design class. It has similarity with the model first approach, however it does not generate edmx file. To determine their differences visit this blog Entity Framework Model first approach for the actual process on how the database is generated in this approach. To proceed with
» Read moreHow: Adding Entity Framework Reference using NuGet
If you have already added Entity Framework you might want to check this thread ASP.NET MVC using EF for actual using of Entity framework in your code. If this is your first time you can continue reading steps below on Adding Entity Framework. Let’s Start: – Adding Entity Framework Reference 1. Open NuGet Package Manager to add EntityFramework. Go to Tools->NuGet Package Manager
» Read moreASP.NET Entity Framework: Model First Approach (MVC)
Model first Approach is ASP.NET Entity framework functionality which creates a new model using entity framework designer and generate database schema from the model design. This is all found in EDMX(.edmx extension) file. To fully understand how this entity framework approach work. I have created a simple tutorial on how to execute Model First Approach. Note: I’m using
» Read moreHow: ASP.NET MVC using Entity Framework(Database First Approach)
Entity framework is part of .NET Framework it generates necessary database command that execute connection with database without using the standard SQL queries. To expand our understanding on how Entity Framework works. I created an ASP.NET MVC web application to share what I’ve learned. For beginners like me hopes this helps. Image below is the table I created for this
» Read moreASP.NET MVC Login Tutorial – Web Application
For most of the beginners hardest part in learning ASP.NET MVC Application is the understanding and knowing how MVC works. In this example we will illustrate Model->View->Controller using a simple MVC login web application. Project Overview: HomeController.cs Index() -> load default view of the HomeController. Where view is located at Views->Home->index.cshtml Index(LoginModel model)-> This received the data input by the user from our login
» Read moreConsuming SQL Stored Procedures (ASP.NET MVC Web Application)
For beginners: – SQL Stored Procedures To fully understand the Sample ASP.NET MVC Project below you must see first this blog Creating Stored Procedure. To fully understand the Sample ASP.NET MVC Project below you must see first this blog Creating Stored Procedure. To fully understand the Sample ASP.NET MVC Project below you must see first this blog Creating Stored Procedure. If
» Read more