Mikesdotnetting

Stories submitted by Mikesdotnetting

ASP.NET MVC, Entity Framework, Modifying One-to-Many and Many-to-Many (mikesdotnetting.com)

submitted by MikesdotnettingMikesdotnetting(340) 2 years, 10 months ago

Building on my previous article, which looked at adding data with one-to-many and many-to-many relationships via the Entity Framework, here's a look at how to modify that data within an ASP.NET MVC application. read more...

add a comment |category: |Views: 207

tags: another

ASP.NET MVC, Entity Framework, One-to-Many and Many-to-Many INSERTS(mikesdotnetting.com)

submitted by MikesdotnettingMikesdotnetting(340) 2 years, 11 months ago

Taking on two new technologies - ASP.NET MVC and the Entity Framework - at the same time was bound to provide some "interesting" moments. Getting data out via EF has so far been pretty straightforward. But when it got to building the back end of my site, I had some fun trying to manage INSERTS with One-To-Many and Many-To-Many relationships. read more...

add a comment |category: |Views: 280

tags: another

Build your own Whois Lookup with ASP.NET and jQuery(mikesdotnetting.com)

submitted by MikesdotnettingMikesdotnetting(340) 2 years, 11 months ago

IP addresses can reveal a lot about your web visitors. For an ecommerce site, the owner or registrant of the visitor's IP address can be very useful information. You could paste each visitor IP address into one of the many free IP Lookup sites available, but that can be time-consuming and tedious. Or you could build your own lookup. This article shows how this can be done pretty quickly. read more...

add a comment |category: |Views: 369

tags: another

ASP.NET MVC Partial Views and Strongly Typed Custom ViewModels(mikesdotnetting.com)

submitted by MikesdotnettingMikesdotnetting(340) 2 years, 11 months ago

I'm in the process of rewriting mikesdotnetting.com using the ASP.NET MVC framework. It's an interesting experience, in that this is my first exposure to MVC. The first stumbling block I encountered was how to pass data in a satisfactory way to Partial Views which only represent part of the data that is to be displayed in the View. Since I struggled to find clear guidance on this, I thought I would share a way to do it. read more...

add a comment |category: |Views: 97

tags: another