-
> MVC is a GUI based design pattern. So so. MVC is a design pattern for the interactive interface . GUI is an instance of interactive interfaces. > In web context, it is generally used to stream HTML No no. That's Model 2 . Neither a html stream, nor what originates it, is an interactive interface...
-
Hi, I have created a true MVC-pattern for ASP.NET that allows dialogs windows in ASP.NET just like you would do when using WinForms. I am using a technique called server-side-blocked calls (server-side AJAX). On my website there are four demos online and also a recording of a live-coding-example (executable...
Posted to
Announcements
(Forum)
by
inchl
on
09-28-2006, 12:00 AM
Filed under: design pattern, MVC, business, object hiearchy, static Cache HttpContext.Current.Cache, Class Design
-
Here is my opinion about all of this: The root namespace contains a classes that implement Fowler's DomainModel domain logic pattern (not just data transfer objects - also may contain validation methods and domain-specific functions). but the DomainObjectBase is this layer's supertype and can't belong...
Posted to
Architecture
(Forum)
by
kejroot
on
12-15-2006, 12:00 AM
Filed under: design pattern, MVC, entity, bll, dal, Class Design, OOP, O/R Mapping, classes, ORM, architecture
-
Hi folks, I need a little advice on the MVC pattern... I've tried it out with just UserControls and I love how it works out, the test driven approach is refrshing and it's absolutely great for automated testing! The thing is I'm not sure how to apply the MVC logic to a whole webpage containing more than...
-
Hello to all. I just need some clarifications / questions: 1st question: Are UI Process components equivalent to the controller of the MVC design pattern? 2nd question: How can I implement UI Process Components? I have just a read an article from Microsoft's Practices and Patterns named "Application...
-
Thanks for the reply. :) Is this a good approach? // Inside a System.Web.UI.Page class... protected void SomeMethod() // invoked by clicking some control. { // Assuming all the inputs are valid UIProcessFacade.NextProcess( this ); // The "this" keyword refers to the ASPX page that was calling...
-
Hi, All that i know via few blogs is that Microsoft is on its way preparing a MVC framework ( Just like Ruby on rails ) which works on CLR and will be independent of language. You can develop on any of your 6 languages available for .Net Mr. Scott Gu has also confirmed this in one of his blogs comments...
-
I had less ambitious implementation. Moved the business logic to model,controllers and treating view / viewhelpers as expandable or replacable. http://vikasnetdev.blogspot.com/2006/12/my-default-soa-architecture-using-wcf.html With Rich Interactive Clients in fashion, it was a good decision in hindsight...
-
Hi All, my question is about proper architectural design for cross-browser based web application. Microsoft Silverlight (code-named Windows Presentation Foundation/Everywhere or WPF/E ) is supposed to be cross-browser rich client. So far so good. Where are patterns and practices for implementing MVC...
-
Good News have arrived finally. It seems Microsoft is in the mood of sharing pleasing news this week. First smile was Sharing Source Codes for .Net 3.5 framework and Now this one. Scott Guthrie announces ASP.NET MVC framework at Alt.Net Now there is more way to do the great database work that Ruby on...