I don't have the experience you have but I do from observation and use of
these newsgroups that many guys with C++ and experience with about 5 or 6
other languages for about 10 years now that have downshifted to ASP.NET
are
often writing a whole bunch of code only to learn that 5 or 6 lines would
have got the job done had they learned more about the resources available
from the framework itself.
As for your specific question we still have the intrinsic server objects
available Redirect, Transfer and Excute methods noting the efficiency you
are looking for is going to be found in 'your' classes and/or those
classes
accessible from the framework.
As I've suggested, class design as applied to the DNF is well documented
in
the book I referred to and a lot can be learned from Microsoft's Architect
Journal [1].
--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee.com
URL
http://clintongallagher.metromilwaukee.com/
[1]
http://msdn.microsoft.com/architecture/journal/
Michael C# said:
Thanks.
I've been writing OOP apps in C++ and about 5 or 6 other languages for about
10 years now and I recently downshifted to C#.NET and VB.NET Windows
Forms
apps. Now I'm trying to learn ASP.NET, but so far it seems to be far
more
trouble than it's worth. At this point, an application I could have written
in about 30 minutes using PHP or CF with FuseBox has already wasted a couple
of hours of my time, and I'm considering just scrapping it.
I need an answer to one simple question: How I can direct all action on my
website from a single page. Whatever you wish to call it, that's all I wish
to do. So now, is there a way to do this without a CASE..SELECT and a
*slew* of Response.Write's or not? If so, how? If not, thank you for your
time.
I'll be more than happy to discuss the merits of polymorphism with you when
I have more time.
Thanks,
Michael C#
message