I feel that asp.net is not so oop oriented as wpf and win forms

T

Tony Johansson

Hello!

I'm attending a course in asp.net and I have done several exercise in this
and I get the feeling
that asp.net is not so OOP oriented as when using wpf and win forms because
of the way asp.net is used.

Is this a correct interpretation of how we use asp.net ?

//Tony
 
A

Arne Vajhøj

I'm attending a course in asp.net and I have done several exercise in this
and I get the feeling
that asp.net is not so OOP oriented as when using wpf and win forms because
of the way asp.net is used.

Is this a correct interpretation of how we use asp.net ?

At the low level ASP.NET is just as OO as any other type of
..NET code.

The interaction between the browser and a web app is limited
by the HTTP protocol.

This impacts the high level logic. I guess you could consider
a stateless request response model to be more procedural
than OO.

But actually win forms tries to hide some of that and
expose a programming model more similar to desktop apps.

Arne
 

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