473,734 Members | 2,806 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Building a web application with OO

I am doing some research into building web applications using Object
Oriented techniques. I have found the excellent patterns section on the
MSDN site, but other than that I cannot find any good, concrete examples. I
know Microsoft are really pushing OO with the .NET Framework and C#, but for
web stuff I am finding good examples sparse. Can anyone offer some links to
articles, whitepapers, sites etc that maybe give a good overview of the
techniques involved with building an OO based web application? I have looked
on ASP.NET but found nothing other than data-centric web applications, which
isnt what I want.

Thanks

Nick.
Nov 18 '05 #1
17 2063
The .NET framework itself is very OO. You can use it in object oriented
ways, including inheriting from many of the classes & such:
http://msdn.microsoft.com/library/de...bjectmodel.asp

Ditto for the whole object model of ASP.NET:
http://msdn.microsoft.com/library/de...mberstopic.asp

And every page is a class that is used in very object oriented ways:
http://msdn.microsoft.com/library/de...bjectmodel.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com


"Nick" <fr**@here.ther e> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
I am doing some research into building web applications using Object
Oriented techniques. I have found the excellent patterns section on the
MSDN site, but other than that I cannot find any good, concrete examples. I know Microsoft are really pushing OO with the .NET Framework and C#, but for web stuff I am finding good examples sparse. Can anyone offer some links to articles, whitepapers, sites etc that maybe give a good overview of the
techniques involved with building an OO based web application? I have looked on ASP.NET but found nothing other than data-centric web applications, which isnt what I want.

Thanks

Nick.

Nov 18 '05 #2
Max
I use VB.NET which is truely OO now and performs just as well as C#.

Best examples are here:

Very basic
http://www.asp101.com

More advanced
http://aspnet.4guysfromrolla.com/

-Max
"Nick" <fr**@here.ther e> wrote
I am doing some research into building web applications using Object
Oriented techniques. I have found the excellent patterns section on the
MSDN site, but other than that I cannot find any good, concrete examples.

I

Nov 18 '05 #3
I think you should go back and learn about the .NET Framework. Look at the
..NET Framework Base Class Libraries. .NET is all about OO, so it's not a
matter of finding where OO is used, it's a matter of understanding the whole
architecture. For example, the web page itself is a programmable,
inheritable object.
"Nick" <fr**@here.ther e> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
I am doing some research into building web applications using Object
Oriented techniques. I have found the excellent patterns section on the
MSDN site, but other than that I cannot find any good, concrete examples. I know Microsoft are really pushing OO with the .NET Framework and C#, but for web stuff I am finding good examples sparse. Can anyone offer some links to articles, whitepapers, sites etc that maybe give a good overview of the
techniques involved with building an OO based web application? I have looked on ASP.NET but found nothing other than data-centric web applications, which isnt what I want.

Thanks

Nick.

Nov 18 '05 #4
Be sure to checkout www.TechnicalVideos.net
Nov 18 '05 #5
Please do not supply resources that require a payment as a solution.
"Mike" <Mi*****@Hotmai l.com> wrote in message
news:e9******** *************** ***@posting.goo gle.com...
Be sure to checkout www.TechnicalVideos.net

Nov 18 '05 #6
Steve C. Orr [MVP, MCSD] wrote:
Ditto for the whole object model of ASP.NET:
http://msdn.microsoft.com/library/de...mberstopic.asp


Hi Steve, excuse me for butting in, but I don't suppose you know where
I might find a high level UML class diagram of the entire framework?

It would make a handy reference document for us newbs.
Nov 18 '05 #7
Nick wrote:
I have found the excellent patterns section on the MSDN site


Hi, I haven't seen the patterns section on MSDN, would you mind giving
me the URL?
Nov 18 '05 #8
OK maybe my question was poorly written. While the whole framework is
purely based on OO, writing web applications isnt quite as rigorous. As a
comparable example, consider the Struts framework for J2EE based web
systems. ASP.NET provides a fairly reasonable attempt at Page Controller
with its code-behind pages, but I have found in my experience this isnt
enough to promote good extensibility and good separation of concerns.

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ej******** ********@TK2MSF TNGP09.phx.gbl. ..
The .NET framework itself is very OO. You can use it in object oriented
ways, including inheriting from many of the classes & such:
http://msdn.microsoft.com/library/de...bjectmodel.asp
Ditto for the whole object model of ASP.NET:
http://msdn.microsoft.com/library/de...mberstopic.asp
And every page is a class that is used in very object oriented ways:
http://msdn.microsoft.com/library/de...bjectmodel.asp
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com


"Nick" <fr**@here.ther e> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
I am doing some research into building web applications using Object
Oriented techniques. I have found the excellent patterns section on the
MSDN site, but other than that I cannot find any good, concrete
examples. I
know Microsoft are really pushing OO with the .NET Framework and C#, but for
web stuff I am finding good examples sparse. Can anyone offer some

links to
articles, whitepapers, sites etc that maybe give a good overview of the
techniques involved with building an OO based web application? I have

looked
on ASP.NET but found nothing other than data-centric web applications,

which
isnt what I want.

Thanks

Nick.


Nov 18 '05 #9
Here you go: http://msdn.microsoft.com/practices/...ns/Enterprise/
"Adie" <ar*******@h-o-t-m-a-i-l.com> wrote in message
news:4d******** *************** *******@news.te ranews.com...
Nick wrote:
I have found the excellent patterns section on the MSDN site


Hi, I haven't seen the patterns section on MSDN, would you mind giving
me the URL?

Nov 18 '05 #10

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

Similar topics

1
1656
by: Darius Blaszijk | last post by:
Hello, I have a rather unusual question. I would like to build a demo application that is completely local. So no client-server at all (at least not in the sense it is usually used). The purpose of the app. is that users can enter data which is stored in a local database (MS Access or DBF or so). The data entered is pure text. Later the data can be searched and queried and the result will be shown in a table. The entire GUI should be...
4
1434
by: Capri | last post by:
HI ... Can anyone tell me what do we mean by building an application ? How is it diffrent from compling and executing an application ? If you can help me remove my doubt then kindly mail me at meenakshi@techlawindia.com Regards
0
1006
by: andrei | last post by:
Hi Group, Environment: Windows 2000 Professional, VS.NET 2003 The solution has 30 projects (one main asp.net application and the rest are dlls) We have this annoying behaviour with our ASP.NET application From time to time, when trying to build or rebuild or run the application, we experience VS crashes. VS starts by building the dependent dlls (which is perfectly OK) but when it
1
1445
by: Diffident | last post by:
Hello All, I have a question as to why my users are noticing error when I am building the project on the production system. Here is the problem's background. In order to build the project on the production system, I use the Visual Studio's File > Open From Web and then build the solution. Some of the build settings are as follows: Output path: bin
2
2388
by: Gawel | last post by:
Hajo, I have soulutin with 7 library projects and 2 web projects. When I change something in one of the libraries and hit F5 it takes literally 1-2 minutes to start an application. I've noticed - looking at output window - that huge time of building takes web site validation. The output is like below:
0
1720
by: s | last post by:
I need to develop a multiuser database application to be used by four people(The number of users are not likely to increase). It is for storing records of different versions of particular papers. I am new to building such an application. I would like to know what would the requirements be for using Access as the means for building the multiuser database. Two of the four use Access 2000(running Windows 98) and other two use Access...
20
2639
by: Thorsten Kampe | last post by:
Hi, I've already sent this to the Komodo mailing list (which seemed to me the more appropriate place) but unfortunately I got no response. I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor PyQT are actually what I want (because the lack of GUI builders and they don't really look good on Windows and Linux). Komodo itself is an excellent example of a - at least Python driven -
0
1193
by: ...:::JA:::... | last post by:
Hello, I have problem with building directpython ( .exe ) application , actually when I finish building application and when I run it, in log file I get an error: Traceback (most recent call last): File "sampleMeshAnim.py", line 16, in ?
1
4171
by: prajaktabk | last post by:
Hi, I am building a application on Visual studio 2005. I have included file #include<fstream> with using namespace std. & I am getting errors like : error C2039: 'openprot' : is not a member of 'std::basic_filebuf<_Elem,_Traits>' error C2039: 'nocreate' : is not a member of 'std::basic_ios<_Elem,_Traits>' The same application is building on 32 bit windows(where I have included fstream.h)
0
8946
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8776
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
9236
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9182
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6735
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4809
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3261
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2724
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.