MVC Framework

M

mohaaron

Hello all,

I've been searching for a video I found a while back which showed a
MVC style framework which was used to seperate the business logic from
the UI. This made it possible to use the exact same logic in both
asp.net and WPF. I had thought that this was a video showing Microsoft
developers showing off the technology but now I'm not sure as I can't
find the video again. I would really like to know if anyone knows what
this framework was or where this video is as I have spent many hours
now trying to find it again. The only details of it that I can
remember is that it was an MVC style framework and that the example in
the video was using asp.net. I also remember there being View and
Controller interfaces used along with it.
 
C

Cowboy \(Gregory A. Beamer\)

I would look at the MSDN site webcasts and see if you can dredge it up. The
www.microsoft.com/events site is also a possibililty. There are also videos
on the netfx3.com site and channel 9. It is probably in one of these
sources.

NOTE: You do not need MVC to separate UI and business. MVC allows you to
reuse a bit more of the plumbing on the UI layer (potentially, at least),
but you can move your business functionality into its own layer and add a
facade to contact and the only pieces you will have to update on the client
are the actual UI bits, which should be very little code. MVC, at least with
ASP.NET and Silverlight, gives you the potential of moving more of the UI
into shared bits, as you can separate model from intent (model driven
architecture).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
 
M

Michael Nemtsev

Hello mohaaron,

See there http://msdn2.microsoft.com/en-us/library/aa480450.aspx
and there http://msdn2.microsoft.com/en-us/library/aa480482.aspx

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

m> Hello all,
m>
m> I've been searching for a video I found a while back which showed a
m> MVC style framework which was used to seperate the business logic
m> from the UI. This made it possible to use the exact same logic in
m> both asp.net and WPF. I had thought that this was a video showing
m> Microsoft developers showing off the technology but now I'm not sure
m> as I can't find the video again. I would really like to know if
m> anyone knows what this framework was or where this video is as I have
m> spent many hours now trying to find it again. The only details of it
m> that I can remember is that it was an MVC style framework and that
m> the example in the video was using asp.net. I also remember there
m> being View and Controller interfaces used along with it.
m>
 
M

mohaaron

Thanks for the reply,

These two links seem to be specific to win forms where what I was
looking at was for cleanly separating the logic from the UI so it can
be used in both win forms and asp.net.

Regards,

Aaron
 
M

Michael Nemtsev

Hello mohaaron,

See my mate's article about MVC/MVP http://ameleta.spaces.live.com/blog/cns!5F6316345A821420!163.entry

The idea is that u provide only interfaces, abstacting from the implementation

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

m> Thanks for the reply,
m>
m> These two links seem to be specific to win forms where what I was
m> looking at was for cleanly separating the logic from the UI so it can
m> be used in both win forms and asp.net.
m>
m> Regards,
m>
m> Aaron
m>
Hello mohaaron,

See therehttp://msdn2.microsoft.com/en-us/library/aa480450.aspx and
therehttp://msdn2.microsoft.com/en-us/library/aa480482.aspx

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog:http://spaces.live.com/laflour
Team blog:http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo

m> Hello all,
m>
m> I've been searching for a video I found a while back which showed
a
m> MVC style framework which was used to seperate the business logic
m> from the UI. This made it possible to use the exact same logic in
m> both asp.net and WPF. I had thought that this was a video showing
m> Microsoft developers showing off the technology but now I'm not
sure
m> as I can't find the video again. I would really like to know if
m> anyone knows what this framework was or where this video is as I
have
m> spent many hours now trying to find it again. The only details of
it
m> that I can remember is that it was an MVC style framework and that
m> the example in the video was using asp.net. I also remember there
m> being View and Controller interfaces used along with it.
m
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top