Displaying posts categorized under

.NET

Last Git Commit as a MSBuild Task

Time for a tiny small free tool. But just what I needed, so therefore I developed it…
I often do solutionwide versioning. As in generatinig the AssemblyInfo.cs files when building a the deploy target. Before I come that far I just code, build and test in Visual Studio, but go out to the command prompt when [...]

Suckerfish menu with ASP.NET and JQuery

This time I am giving you the ASP.NET code for creating a Suckerfish menu in ASP.NET. I really like the multiple level/hover shows next level type of menus like in these screenshots:
 

 

 
I keep trying to push for JQuery – not only is it small, wellwritten, MIT licensed (allows for use and distribution in commercial projecvts as [...]

JQuery tree viewer in ASP.NET

Here’s a ASP.NET and JQuery based tree viewer example. I’m using Jörn Zaefferers treeview for the javascript tree rendering for the simple reason it’s completely unobtrousive. You mark the tree up by regular ul/li structure – meaning if someone doesn’t have Javascript activated (say a search engine spider for one example) they will be still [...]

Selecting random items from array

I recently had to do a hack on a site, and implement random link rolling. The used a third party CMS so all I could do (well considering the time parameter as well) was to change the ASP.NET master page to include some quick link selection code as well.
So therefore this code might look very [...]