Tag Archives: MVC
Health Monitoring with ASP.NET MVC
ASP.NET Health Monitoring has been around for a very long time (.net 2.0). I personally think it is a feature that has been put on the back burner and forgotten about by most. Health Monitoring was created to help evaluate … Continue reading
CS0012: The type ‘System.Data.Spatial.DbGeography’ in Entity Framework and MVC
Last night I was working on a MVC4 project. Utilizing Entity Framework 5’s new DBGeography when adding the field to the MVC view I received the following error:
MVC display an image that is stored as a byte array
So the scenario is; how do we retrieve images that are stored in a database as a byte array and display them on a page utilizing Asp.net MVC. The major hurtle that needs to be overcome is that a … Continue reading
Chlodny series Day 14: Web Api Upgrade from beta to RC
Over the weekend I finished upgrading the initial parts of the Chlodny Web Api project along with the past blog post of this series. This post will go over the process I needed to do in order to upgrade from … Continue reading
Chlodny series Day 13: Web Api Update
[Updated Web Api RC] The last part of the local CRUD application is update. We will be following a similar pattern that was conducted in Day 12. Open CustomerController.cs and create a new method named PutCustomer that returns a HttpResponseMessage. … Continue reading
Chlodny series Day 12: Web Api Create
[Updated to Web Api RC] In our quest to create a CRUD application we have completed the read and the delete portion. In this article we will generate the create functionality. For now I am using the jQuery Templates in … Continue reading
Chlodny series Day 11: Web Api Delete
[Updated for Web Api RC] In sessions 8-10 we added some get functionality along with paging and selection support to our grid. Now what if we want to prune out customer database and remove one of those customers.
Chlodny series Day 10: Clear selection
In session 9 we added paging and the selection events. If you selected one or more rows from the top grid it would populate the bottom grid. What if you want to remove everything from the selection grid
Chlodny series Day 9: Grid View enhance paging and selecting
In the last session we utilized AJAX and called into our Web API to get a list of all the customers in the Chinook database. We then took those results and bound them to a data grid so that an … Continue reading
Chlodny series Day 8: Display Web API GET in Grid View
For this session we are going to setup the JavaScript and HTML files to send a GET request to Web API and get a list of all the customers in the Chinook database, then we will display those in a … Continue reading
You must be logged in to post a comment.