Browse by Tags

All Tags » ASP.NET MVC (RSS)

Create Tag-Cloud from RSS Feed in ASP.NET MVC by jdanforth

Say you want to generate your own tag-cloud from a list of categories or tags you pull from an RSS-feed or similar. This is one way to do it. I’m using ASP.NET MVC for this sample which creates a simple tag-cloud in a Razor-view with HTML looking something...
Filed under: , ,

Compile ASP.NET MVC on TFS 2010 Build Server by jdanforth

Note to self: If you need to build ASP.NET MVC 2 applications on a fresh TFS 2010 Build Server without Visual Studio installed, copy the System.Web.Mvc.dll from your dev box to the build server and register it there.
Filed under: , ,

Fill a Select/Option from Json with jQuery by jdanforth

More jQuery and Json… To fill a listbox (select) with items from a Json call. I got this helper class to handle the options/items: public class SelectOption { public String Value { get ; set ; } public String Text { get ; set ; } } A sample action/method...
Filed under: , ,

Json, jQuery and ASP.NET MVC by jdanforth

I’m stacking a few things here related to Json, jQuery and ASP.NET MVC so that I can get to them later on. JQuery to grab some Json when a web page is loaded: $(document).ready( function () { $.getJSON( "/MyController/MyJsonAction" , null ,...
Filed under: , ,

Running ASP.NET MVC on Your Windows Home Server by jdanforth

Right, so I ran the new Web Platform Installer 2.0 Beta on my WHS and it seems (so far) to have worked out quite well. I created a new MVC website with File->New… and published it over to an MVC-directory on WHS (I have set that up earlier, with a...

Web Platform Installer 2.0 Beta on Windows Home Server by jdanforth

I’ve been thinking of setting up ASP.NET MVC 1.0 on my WHS and also start learning some Silverlight stuff, so I took a risk, went to the Microsoft Web Platform Installer page and clicked on the Beta 2.0 link. Downloaded the installer, marked ASP.NET MVC...

ASP.NET MVC v1 Source Code Released by jdanforth

Phil twitted that the source code for ASP.NET MVC v1 is available on Codeplex now, so I guess it’ll be released as a proper installer on MSDN any time now. EDIT: …and a few hours later it was on MSDN :) Congrats to Phil Haack and his merry men for doing...
Filed under:

ASP.NET MVC Preview 5 Released by jdanforth

Hey, I'm just helping to spread the word! A sampled a few links and quotes that has already been posted to blogosphere for your pleasure and knowledge. :) Download it here -> http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16775...
Filed under: ,

Auto Postback with Javascript in ASP.NET MVC by jdanforth

I've looked this up twice now so I'm posting it to my blog for future reference and as a quick-tip for others. Say you got a web page with a dropdown/select listbox and you want to reload/auto postback the page when the selection changes. One way to do...
Filed under: ,

IronRuby with ASP.NET MVC by jdanforth

Now that ASP.NET MVC preview 4 is out, Phil Haack did as promised and made available a working prototype of IronRuby + ASP.NET MVC integration . He wrote: Now that Preview 4 is out, I revisited the prototype and got it working again. I use the term working...
Filed under: ,
More Posts Next page »