473,386 Members | 1,705 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

FuseBox in ASP.NET

Hi all,

I'm new to ASP.NET and would like to implement a simple app using something
similar to the ColdFusion Fusebox methodology. Can anyone point out some
articles or websites that explain how to do this?

Thanks,
Michael C#
Nov 19 '05 #1
4 1275
You do not realize it being new to ASP.NET and the DNF which no doubt is
completely new to you (because you asked the question that you did) but
FuseBox was simply a home-brewed attempt to mimic OOP architecture and apply
'pseudo classes' to scripting languages such as CFML and ASP. I adopted the
use of FuseBox for an Intranet project I developed. I used ASP and now that
I have sufficient knowledge of ASP.NET and OOP I can tell you from
experience that FuseBox was a noble attempt but its principles do not carry
over.

You need to learn OOP. A book you need to acquire is "C# Class Design
Handbook" published by WROX. Once you read -- and understand -- what the
subject matter in that book conveys you'll have a solid foundation for
everything you need to understand the fundamentals of using C# with OOP
principles.

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/

"Michael C#" <xy*@abcdef.com> wrote in message
news:Ml*******************@fe08.lga...
Hi all,

I'm new to ASP.NET and would like to implement a simple app using something similar to the ColdFusion Fusebox methodology. Can anyone point out some
articles or websites that explain how to do this?

Thanks,
Michael C#

Nov 19 '05 #2
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#

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
You do not realize it being new to ASP.NET and the DNF which no doubt is
completely new to you (because you asked the question that you did) but
FuseBox was simply a home-brewed attempt to mimic OOP architecture and
apply
'pseudo classes' to scripting languages such as CFML and ASP. I adopted
the
use of FuseBox for an Intranet project I developed. I used ASP and now
that
I have sufficient knowledge of ASP.NET and OOP I can tell you from
experience that FuseBox was a noble attempt but its principles do not
carry
over.

You need to learn OOP. A book you need to acquire is "C# Class Design
Handbook" published by WROX. Once you read -- and understand -- what the
subject matter in that book conveys you'll have a solid foundation for
everything you need to understand the fundamentals of using C# with OOP
principles.

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/

"Michael C#" <xy*@abcdef.com> wrote in message
news:Ml*******************@fe08.lga...
Hi all,

I'm new to ASP.NET and would like to implement a simple app using

something
similar to the ColdFusion Fusebox methodology. Can anyone point out some
articles or websites that explain how to do this?

Thanks,
Michael C#


Nov 19 '05 #3
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#" <xy*@abcdef.com> wrote in message
news:U9******************@fe08.lga...
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#

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
You do not realize it being new to ASP.NET and the DNF which no doubt is
completely new to you (because you asked the question that you did) but
FuseBox was simply a home-brewed attempt to mimic OOP architecture and
apply
'pseudo classes' to scripting languages such as CFML and ASP. I adopted
the
use of FuseBox for an Intranet project I developed. I used ASP and now
that
I have sufficient knowledge of ASP.NET and OOP I can tell you from
experience that FuseBox was a noble attempt but its principles do not
carry
over.

You need to learn OOP. A book you need to acquire is "C# Class Design
Handbook" published by WROX. Once you read -- and understand -- what the
subject matter in that book conveys you'll have a solid foundation for
everything you need to understand the fundamentals of using C# with OOP
principles.

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/

"Michael C#" <xy*@abcdef.com> wrote in message
news:Ml*******************@fe08.lga...
Hi all,

I'm new to ASP.NET and would like to implement a simple app using

something
similar to the ColdFusion Fusebox methodology. Can anyone point out some articles or websites that explain how to do this?

Thanks,
Michael C#



Nov 19 '05 #4
Yeah, that happens a lot when you have to "unlearn what you have learned",
especially when you've spent a decade "doing things the hard way". From
observation I've noticed that many people who are experts in one area assume
that others have no knowledge of anything. As far as learning the
"resources available from the framework itself", that's why I'm here asking
questions of those who know.

The Redirect doesn't do the job required, but I'll check into the Transfer
and Execute methods you suggested. Thank you for the tip.

Thank you also for posting the link to the article on "ASP.NET and the DNF"
(no doubt completely new to me) in your second post.

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:Uw*******************@twister.rdc-kc.rr.com...
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#" <xy*@abcdef.com> wrote in message
news:U9******************@fe08.lga...
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#

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in
message
news:%2****************@TK2MSFTNGP14.phx.gbl...
> You do not realize it being new to ASP.NET and the DNF which no doubt
> is
> completely new to you (because you asked the question that you did) but
> FuseBox was simply a home-brewed attempt to mimic OOP architecture and
> apply
> 'pseudo classes' to scripting languages such as CFML and ASP. I adopted
> the
> use of FuseBox for an Intranet project I developed. I used ASP and now
> that
> I have sufficient knowledge of ASP.NET and OOP I can tell you from
> experience that FuseBox was a noble attempt but its principles do not
> carry
> over.
>
> You need to learn OOP. A book you need to acquire is "C# Class Design
> Handbook" published by WROX. Once you read -- and understand -- what
> the
> subject matter in that book conveys you'll have a solid foundation for
> everything you need to understand the fundamentals of using C# with OOP
> principles.
>
> --
> <%= Clinton Gallagher
> METROmilwaukee "Regional Information Services"
> NET csgallagher AT metromilwaukee.com
> URL http://clintongallagher.metromilwaukee.com/
>
>
>
>
>
> "Michael C#" <xy*@abcdef.com> wrote in message
> news:Ml*******************@fe08.lga...
>> Hi all,
>>
>> I'm new to ASP.NET and would like to implement a simple app using
> something
>> similar to the ColdFusion Fusebox methodology. Can anyone point out some >> articles or websites that explain how to do this?
>>
>> Thanks,
>> Michael C#
>>
>>
>
>



Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

60
by: English Teacher | last post by:
Which would be more useful to learn, PHP or COLDFUSION? I know Coldfusion is popular in the work force. Is PHP? Thanks!
3
by: Justin Koivisto | last post by:
OK, I know a few of you out there use OSC and many of you have also modified it a bit, so I am hoping someone has done something similar... I have the CC payment module installed, not a problem...
25
by: Lin Ma | last post by:
Hi, I am wondering if I am doing right. Please advise. I create a system with 8 major steps and each step can go different direction. General speaking, a lot of if statements and functions...
1
by: Brendan | last post by:
My table resizes just once when there is a mouseover on any of the Update or delete buttons. This app is being developed in CF 6.1 with a fusebox 4.1 framework just an FYI I have put the two...
11
by: brendan.ganning | last post by:
I am working on converting an app to a CSS layout. I have run the CSS validation on it and the only errors that appear are ones that ColdFusion would have fixed. The issue there is a data table...
3
by: Dennis M. Marks | last post by:
Take a look at the new www.amtrak.com site. It looks like all pages are built dynamically using javascript. All of the page sources look the same. I used to have direct links to some of the...
1
by: Rod | last post by:
The parent company where I work like to use a methodology popularized by Fusebox, for web application development. Fusebox, from what I have been able to gather, is best suited to Cold Fusion. I've...
2
by: Imran Aziz | last post by:
Hello All, I am fairly new to ASP.net. But have worked in various web based technologies for more then 5 years now, in CF and PHP e.g there is fusebox methodology to develop websites, and in ASP,...
0
by: seaside | last post by:
Found today http://www.fusebox.org/ , wich claims to be a methodology and framework to develop web apps . Anybody here, who ever tried Fusebox? Might Fusebox be worth to take some days for...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.