473,909 Members | 4,189 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Windows app or ASP.NET ?

I am not sure which way to go:
Want to learn C# but C# is implemented both in Windows desktop application
and ASP.NET. I am not familiar with web programming, should I start with
Windows app or ASP .NET?
Sep 28 '07 #1
27 1839
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
>I am not sure which way to go:
Want to learn C# but C# is implemented both in Windows desktop application
and ASP.NET. I am not familiar with web programming, should I start with
Windows app or ASP .NET?
Why not both?

- Michael Starberg
Sep 28 '07 #2
I would love to but I need to get started from choosing one of them first
anyway.

"Michael Starberg" <no@no.comwro te in message
news:OX******** ******@TK2MSFTN GP05.phx.gbl...
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
I am not sure which way to go:
Want to learn C# but C# is implemented both in Windows desktop
application
and ASP.NET. I am not familiar with web programming, should I start with
Windows app or ASP .NET?

Why not both?

- Michael Starberg


Sep 28 '07 #3

"Alan T" <al************ *@yahoo.com.auw rote in message
news:u8******** ******@TK2MSFTN GP02.phx.gbl...
>I would love to but I need to get started from choosing one of them first
anyway.
First you need to learn to not top-post, if your message is not final.

But I'd start in the middle if I where you,
building a simple webservice, and have a small website and a winapp work
with that.

Why just a master-detail using the Northwnd database.
Some Databinding, GUI-gridding. And maybe some Validation.

Another thing you could do is to do a really slow Tetris,
in a console application. Using Console.Read()
you could redraw the 'game-area' for each move,
and spend time having fun with OO.
maybe IBrick knows when it hits IWall.
Or maybe IGame knows when a brick hits a wall.
Maybe the singleton Floor could raise an event
when it observes that a straight line has been done..

Lousy design, true, but it will get you going...

- Michael Starberg
Sep 28 '07 #4
Start with Windows application programming.

I think trying to do both at once would be confusing.
Sep 28 '07 #5
"Michael Starberg" <no@no.comwro te in message
news:Oq******** ******@TK2MSFTN GP02.phx.gbl...
>
"Alan T" <al************ *@yahoo.com.auw rote in message
news:u8******** ******@TK2MSFTN GP02.phx.gbl...
>>I would love to but I need to get started from choosing one of them first
anyway.

First you need to learn to not top-post, if your message is not final.
Top-posting has come into wide use for a good reason. I challenge the
anti-top-posting crowd to enumerate the advantages of both bottom- and
top-posting. I'm afraid that for many people nowadays, telling others not
to top-post is merely a way of claiming status.

But I'd start in the middle if I where you,
building a simple webservice, and have a small website and a winapp work
with that.

Why just a master-detail using the Northwnd database.
Some Databinding, GUI-gridding. And maybe some Validation.

Another thing you could do is to do a really slow Tetris,
in a console application. Using Console.Read()
you could redraw the 'game-area' for each move,
and spend time having fun with OO.
maybe IBrick knows when it hits IWall.
Or maybe IGame knows when a brick hits a wall.
Maybe the singleton Floor could raise an event
when it observes that a straight line has been done..

Lousy design, true, but it will get you going...
Are those serious proposals? You seem to be trying to construct unusually
difficult things for a first project.

I generally tell beginners to build a simple interactive Windows app with
some buttons and textboxes; when the button is pressed, have it read the
textboxes, do a calculation, and report the result in another textbox. From
there, it's a simple step to games, graphical display of data, etc.
Sep 28 '07 #6

"Michael A. Covington" <lo**@ai.uga.ed u.for.addresswr ote in message
news:ea******** ******@TK2MSFTN GP02.phx.gbl...
"Michael Starberg" <no@no.comwro te in message
news:Oq******** ******@TK2MSFTN GP02.phx.gbl...
>>
"Alan T" <al************ *@yahoo.com.auw rote in message
news:u8******* *******@TK2MSFT NGP02.phx.gbl.. .
>>>I would love to but I need to get started from choosing one of them first
anyway.

First you need to learn to not top-post, if your message is not final.

Top-posting has come into wide use for a good reason. I challenge the
anti-top-posting crowd to enumerate the advantages of both bottom- and
top-posting. I'm afraid that for many people nowadays, telling others
not to top-post is merely a way of claiming status.
A: Because it ruines the flow of conversation.
Q: Why is top-posting bad?

That said, I often top-post.
But then I also clean-up and only leave relevant posts below.

I think it is fair to correct someone, while Alan surely ment no harm.
Also, I think you you are semi-correct on the 'claiming status' thingy.

It is not easy to join a new 'cluster' of friends in any situation.
Doesn't matter if it a rock-festival, a coktail-party or especially,
a usenet-cannel.

If I seems like a bigot to you,
then I semi-apologize for that
>>
Lousy design, true, but it will get you going...

Are those serious proposals? You seem to be trying to construct unusually
difficult things for a first project.
Yes, indeed. I am trying to get the basics of OO across
And this is not doing tetris from scratch in pure c.

If you have read my post, you'd see I asked questions.
Maybe Alan will start with learning how to get just one brick on a window.
Maybe interfaces will make him interested.
Maybe he needs simple OO theory.
>
I generally tell beginners to build a simple interactive Windows app with
some buttons and textboxes; when the button is pressed, have it read the
textboxes, do a calculation, and report the result in another textbox.
From there, it's a simple step to games, graphical display of data, etc.

Yep yep.
That would be a good start.
But by doing that, what have your pupil really learned?
Except using a mouse and keyboard?

I prefer to throw my pupils in the water
and tell them this would be a good time
to learn how to swim. =)

Alan:
Note that we are talking generally here,
noone is getting wet by force.
- Michael Starberg


Sep 28 '07 #7
"Michael Starberg" <no@no.comwro te in message
news:ey******** *****@TK2MSFTNG P04.phx.gbl...
>I generally tell beginners to build a simple interactive Windows app with
some buttons and textboxes; when the button is pressed, have it read the
textboxes, do a calculation, and report the result in another textbox.
From there, it's a simple step to games, graphical display of data, etc.
Yep yep.
That would be a good start.
But by doing that, what have your pupil really learned?
Except using a mouse and keyboard?
Obviously, they haven't learned much OOP yet. But they also aren't lost.
They have a foundation.
I prefer to throw my pupils in the water
and tell them this would be a good time
to learn how to swim. =)
How many of them drown? One of my goals (and I've been teaching for 27
years) is for everyone to succeed to the best of his/her ability -- for
nobody to get lost unnecessarily. I figure they're *all* paying tuition.
Sep 28 '07 #8
Alan T wrote:
I am not sure which way to go:
Want to learn C# but C# is implemented both in Windows desktop application
and ASP.NET. I am not familiar with web programming, should I start with
Windows app or ASP .NET?
As Smithers mentioned, ASP.NET has a few extra complications to it.
Start simple with a WinForms app.

Chris.
Sep 28 '07 #9
Alan,

Take the one that gives you the most fun. Be aware that you need for ASP.Net
an open ASP.Net server, those are not always provided, you can use your own
computer as it is a professional version, however then your computer is
almost wide open if you have not very strong firewall hard- or software.

Beside that you need then a continuous connection to internet. I live in
Holland where that is common for most people, I assume that this is not
standard in Australia.

Cor

Sep 28 '07 #10

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

Similar topics

2
15247
by: Ken Lindner | last post by:
I have a need to become familiar with SQL Server 2000 for work. Needless to say I am new to SQL Server any version, but not IT in general. My employer has provided me with the SQL Server 2000 Personal disk from the SQL Server 2000 Enterprise kit as this is reported here on the MSDN web site to be the version that is supported on Windows XP. In fact so many of you kind people confess to having succeeded in doing it. I have tried...
7
3225
by: lvpaul | last post by:
Hallo ! I am using IIS-Windows-Authentication in my intranet (web.config <authentication mode="Windows" /> <identity impersonate="true" /> How can I get the users (client) IP-Address ? I think the username can be read with user.identity.name.
7
2643
by: Tyler Foreman | last post by:
Hello, I have a strange problem that occurs every so often in my application. It usually takes place when I hide one form and activate another. What happens is I get the following exception: System.ArgumentException occured in System.Windows.Forms.dll
1
3459
by: Scott Davies | last post by:
Hi, I'm looking for some help on a small program that I'm trying to develop in VB.NET. I'm having trouble getting the code that I've written to work, can anyone shed some light as to where I'm going wrong. The program has been written to do the following tasks: - Select remote server - Select from two specific services
0
3949
by: Scott Davies | last post by:
Hi, I'm looking for some help on a small program that I'm trying to develop in VB.NET. The program I'm trying to develop needs to be able to do the following: - Select remote server - Select from two specific services - Check the status of the server
4
3170
by: Rod Gill | last post by:
Hi, I have a form that when opened in the designer appears of the screen. The form selector can't be dragged (or resized) and if I scroll right and down to centralise it the form simply jumps further away, completely leaving the selector box area. Any ideas? VS 2003 and VB.Net This is a simple application at the moment but the form is inherited from a
2
11738
by: sambo251 | last post by:
After running a few updates I get this very annoying "Windows Installer" error #1706 that will ne go away! It keeps saying that it cannot find the file "instantsharedevices.msi", that it is on another CD, and gets caught in a loop when I try to delete it! It mentions MS.net frame error # 1706. The "details" code follows...hope someone can help me to either fix it or get out of the loop! I tried running "Windows Registry Repair Pro"...but no help...
1
7867
by: mfunkmann | last post by:
Hi, I recently got an error and I don't know how to fix it: Error 1 'System.Data.DataColumn' does not contain a definition for 'Windows' C:\c#\CsharpPRO\Form1.Designer.cs 304 77 CsharpPRO I am note sure what to do because all propertiers work, except the System.Data.DataColumn.. I didn't write any code by hand and used the visual studio to set the properties..
0
30285
AmberJain
by: AmberJain | last post by:
Windows Autorun FAQs: List of autostart locations Linked from the Original article- "Windows Autorun FAQs: Description". Que: Can you list all the autostart locations for windows? Ans: Here is a comprehensive list of all autostart locations for Windows OSes: NOTE : These are some abbreviations used in this list. Please note them carefully: HKCU = HKEY_CURRENT_USER HKLM = HKEY_LOCAL_MACHINE
0
10035
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
10919
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11046
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
9725
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8097
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
6138
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4774
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
4336
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3357
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.