-
|
Dear readers, as you know that we have released our beta few weeks back, we are currently looking for your feedback on the existing features as well as the features that you would like to see in our next release. This is a very short survey only 4/5 screens to complete, click here to submit your valuable feedback . Thanks in advance for your precious time. Read More...
|
-
|
If you heard about Microsoft Oxite CMS, this is the new one, created as a different project to avoid previous developer comments.: From Press: Microsoft's open-source CMS platform is (re)born | All about Microsoft | ZDNet.com http://blogs.zdnet.com/microsoft/?p=4506 Project Homepage: http://orchard.codeplex.com Quote From Press: The guesses (by me and others) look like they were on target. The “Orchard Project,” which is getting its debut on November 11 at Tech Ed Europe is, indeed, the successor to the Microsoft Oxite content-management system (CMS) . Microsoft made available the first the open-source Oxite CMS bits at the end of 2008 . Like Oxite, Orchard will be a free, open-source CMS platform — plus a set of shared components for building...
|
-
|
In the recent release, there has been few enhancements in the Web Asset Management. One of the new thing that we introduced which was actually requested by the community is Shared Web Asset. In this post, I will show you, how to use it in your ASP.NET MVC Application. In the previous version, you can only define the web assets either in the ScriptRegistrar or StyleSheetRegistrar like the following: <% Html.Telerik() .ScriptRegistrar() .Scripts(scripts => scripts.AddGroup("myScripts", group => group.Add("script1.js") .Add("script2.js") .Add("script3.js") .Combined(true) .Compress(true) ) ) .Render();%> if you want to reuse it in another page, you have to copy the exact same thing. Also the url...
|
-
|
One of the biggest complaints about DotNetNuke , is, and always has been, the lack of documentation. I’ve been trying to help correct that problem for a while now. A year ago I started writing a book that was Published in June, DotNetNuke 5: A User’s Guide , I think it turned out to be a good resource for people looking to learn how to setup and use DNN to build a website. The book however can’t cover everything about DNN, and wasn’t intended too. There are a number of other books out there for DNN...( read more ) Read More...
|
-
|
Daniel Bardi, a Visual WebGui user shared his experience with the Umbraco community as he wrote in his post "...The UI is amazing and works in all known webbrowsers... it's the reason I had decided on the platform for the project (and by reading the many, many reviews). The framework allows non-web developers (or winform developers) to build web applications using a WinForms development environment. No more worries about session and state. The web applications runs on the server and is "projected...( read more ) Read More...
|
-
|
Today I’m very happy to announce that I have officially started my new position as a Director of Engineering at DotNetNuke (DNN) Corp . For those that have followed my career, you could have probably predicated that it was just a matter of time. I have unofficially been an “Evangelist” for DNN for years; I would jump at any chance for open and honest discussion on the merits, advantages and disadvantages of using it for any given situation. I have personally developed a countless number modules, skins, tools, etc.. for a variety of large and small scale solutions. I also use it for the Annual Vancouver TechFest and for a variety of small family and friend sites. I look forward to personally engaging with the DNN User Community and...
|
-
|
My one-hundred-and-eighty-second podcast is up . Scott's in Mexico this week and he's sitting down with Molly Holzschlag . Molly is a well-known Web standards advocate, instructor, and author and correctly works for Opera as an evangelist. She Read More......( read more ) Read More...
|
-
|
Those who have seen my tweet , already know that we have started working on our ASP.NET MVC Grid. In post I will show you the very early version of our Grid, so that you can provide your valuable feedback to guide us in the right direction. So far, we have implemented the paging and multi-column sorting. Let me show you the minimum code to set it up. First, we will create an action method which creates some random data for view: public ActionResult Basic() { Random rnd = new Random(); IList<InMemoryCustomer> model = new List<InMemoryCustomer>(); for (int i = 1; i <= 100; i++) { InMemoryCustomer c = new InMemoryCustomer { Id = rnd.Next(1, 1000), Name = string.Format("Dummy Name #{0}", i), Address = string.Format("Dummy...
|
-
|
You may have noticed that Novell released a way of creating native iPhone applications with C# and potentially any other .Net language with Monotouch , only to find out that it's $399 for a single developer license. Fear not, last night Novell released a "trial" version of Monotouch which will enable you to develop these apps without the need to pay for a license. Using this trial means that you will not be able to run your application on the device (which is important for testing if you're looking...( read more ) Read More...
|
-
|
In the previous post we have created our initial domain model, in this post I will show you how the domain model is mapped to database with Entity Framework 4.0. But before that I would like to discuss how I usually structure the Visual Studio Projects. Most often I prefer to have a one class library and one web project where each has its own unit test project and only one integration test project, for example: Shrinkr.Core Shrinkr.Core.UnitTest Shrinkr.Web Shrinkr.Web.UnitTest Shrinkr.IntegrationTest The Core Project is then further divided into following folders: Shrink.Core Common (Utility, Invariant etc etc) EntityObjects (Contains both domain objects and DTOs) Extensions (Extension methods) Repositories (Contains both interface and...
|