DotNetShoutout - Stories tagged with ASP.NET MVC3
3
Shouts

Chart Helpers in ASP.NET MVC3

posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 632 days, 23 hours, 47 minutes ago
Monday, August 29, 2011 7:51:03 PM GMT
I am exploring ASP.NET MVC3 and everyday I am learning something new. In today’s post I am going to explain how we can create chart with ASP.NET MVC3. Chart is one of greatest way of expressing figures. We all need that functionality in any commercial application. I am still remembering old days with ASP.NET  where we have to use the third party controls for charts or we have to create it with the use of CSS and Server side controls. But now with ASP.NET MVC Helpers you can very easily create chart... (more)
category: Web Dev | clicked: 37 | 1 comment | | source: jalpesh.blogspot.com
tags: chart, ASP.NET MVC3
3
Shouts

Creating Basic RSS Reader in ASP.NET MVC 3

posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 645 days, 23 hours, 23 minutes ago
Tuesday, August 16, 2011 8:14:49 PM GMT
In this post I am going to explain you how we can create a basic RSS Reader with the help of Linq-To-Xml and ASP.NET MVC3 Razor. Those who are writing or reading Blogs already knows what is RSS Reader. But those who does not know What is RSS. Below is the definition for RSS as per Wikipedia. "RSS (originally RDF Site Summary, often dubbed Really Simple Syndication) is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a st... (more)
category: Web Dev | clicked: 12 | comment | | source: jalpesh.blogspot.com
tags: rss, ASP.NET MVC3
2
Shouts

Insert with Dapper Micro ORM and ASP.NET MVC 3

published 733 days, 11 hours, 47 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 735 days, 8 hours, 48 minutes ago
Saturday, May 21, 2011 7:50:32 AM GMT Thursday, May 19, 2011 10:49:46 AM GMT
As I have already posted about the how to fetch data in my earlier post for Dapper ORM. In this post I am going to explain how we can insert data with the dapper ORM. So let’s extend the earlier post project. As explained in earlier post I have already created a class called CustomerDB this class will contains all the operation with Dapper Micro ORM. So For inserting data let’s first create CREATE method like following in CutomerDB Class like following. In that I have create a simple Insert Query in stri... (more)
category: Web Dev | clicked: 13 | 1 comment | | source: jalpesh.blogspot.com
tags: Dapper, ASP.NET MVC3