473,385 Members | 1,275 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,385 software developers and data experts.

Suggestion to learn .net 2.0 and above

I want to learn .net 2.0 and above. I have no knowledge in .net at all.
There are Visual Studio 2005 Virtual Labs and Visual Studio .NET 2003 Virtual
Labs in MSDN. My understanding is that Visual Studio .NET 2003 is for .net
1.0. However, it seems to me that the VS .net 2003 labs may be better than
VS 2005 labs for beginners like me. Should I start from VS .net 2003 labs or
go directly to VS 2005 labs?
Mar 15 '07 #1
6 1291
Should I start from VS .net 2003 labs or
go directly to VS 2005 labs?
What experience do you have? Are you a programmer? Developer?

If not, I'd definitely go straight to '05 and avoid any of the issues of
differences between the two. Note that a VS lab is going to teach you more
about how VS works rather than how the code it writes works.

-Darrel
Mar 15 '07 #2
I'd start with VS 2005. You can do a lot of .NET stuff with the Express
version you can download. There are a ton of .NET examples on
www.codeproject.com.

Tom

"Peter" <Pe***@discussions.microsoft.comwrote in message
news:D6**********************************@microsof t.com...
>I want to learn .net 2.0 and above. I have no knowledge in .net at all.
There are Visual Studio 2005 Virtual Labs and Visual Studio .NET 2003
Virtual
Labs in MSDN. My understanding is that Visual Studio .NET 2003 is for
.net
1.0. However, it seems to me that the VS .net 2003 labs may be better
than
VS 2005 labs for beginners like me. Should I start from VS .net 2003 labs
or
go directly to VS 2005 labs?
Mar 15 '07 #3

You can't really do any ASP.NET without knowing a compliant programming
language like VB.NET or C#. It makes more sense to learn C# than VB.NET
because the syntax for C# and JavaScript is exactly alike and the grammar
nearly so. JavaScript is required for code that runs in the client (the
browser) and the C# code runs on the server (the web server). So you learn
two languages for the price of one (more actually but this will do for now
as many languages share the C syntax and grammar but VB does not).

Go to Deitel & Deitel [1] and make a note of a couple of their C# "Learn to
Program" textbooks. Then have your local Barnes & Noble order them for
review. Look them over and buy the one that is best for your learning level.
Deitel publishes the best programming textbooks used in classrooms
everywhere and you will learn C# doing the lessons in the book. Then start
learning ASP.NET.

Download the free Visual Web Developer Express and SQL Server Express and a
textbook from Deitel & Deitel. You're ready to go...

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/

[1] http://deitel.com/

"Peter" <Pe***@discussions.microsoft.comwrote in message
news:D6**********************************@microsof t.com...
>I want to learn .net 2.0 and above. I have no knowledge in .net at all.
There are Visual Studio 2005 Virtual Labs and Visual Studio .NET 2003
Virtual
Labs in MSDN. My understanding is that Visual Studio .NET 2003 is for
.net
1.0. However, it seems to me that the VS .net 2003 labs may be better
than
VS 2005 labs for beginners like me. Should I start from VS .net 2003 labs
or
go directly to VS 2005 labs?

Mar 16 '07 #4
Have you done programming in the past, and in what language(s)? Are you
wanting to create desktop applications or web applications?

Robin S.
-----------------------------------------
"Peter" <Pe***@discussions.microsoft.comwrote in message
news:D6**********************************@microsof t.com...
>I want to learn .net 2.0 and above. I have no knowledge in .net at all.
There are Visual Studio 2005 Virtual Labs and Visual Studio .NET 2003
Virtual
Labs in MSDN. My understanding is that Visual Studio .NET 2003 is for
.net
1.0. However, it seems to me that the VS .net 2003 labs may be better
than
VS 2005 labs for beginners like me. Should I start from VS .net 2003
labs or
go directly to VS 2005 labs?

Mar 16 '07 #5
Hi Tom and others,

I only have programming experience in Visual FoxPro and T-SQL in SQL Server
2000/2005. I have access to VS 2005 Team Edition for Software Developer. I
need to work on a project using XML Web Service and .Net 2.0 and above. The
language will probably be VB.net and some c#. Need suggestions on websites,
articles, books, and webcasts for my experience. I want to make sure that
I'm not learning something which is being pharsed out.

"Tom Serface" wrote:
I'd start with VS 2005. You can do a lot of .NET stuff with the Express
version you can download. There are a ton of .NET examples on
www.codeproject.com.

Tom

"Peter" <Pe***@discussions.microsoft.comwrote in message
news:D6**********************************@microsof t.com...
I want to learn .net 2.0 and above. I have no knowledge in .net at all.
There are Visual Studio 2005 Virtual Labs and Visual Studio .NET 2003
Virtual
Labs in MSDN. My understanding is that Visual Studio .NET 2003 is for
.net
1.0. However, it seems to me that the VS .net 2003 labs may be better
than
VS 2005 labs for beginners like me. Should I start from VS .net 2003 labs
or
go directly to VS 2005 labs?

Mar 16 '07 #6
I would definitely start with the 2005 version of Visual Studio.

VB's not going anywhere. VB would probably be easier for you, and then you
can move into C# as you need to. That's what I did. C# was a lot easier to
learn because I had already learned the .Net Framework with VB which I was
more familiar with.

For VB, check out Tim Patrick's Start-to-Finish VB2005. It has a *lot* of
information in it. My only problem with it was his code wasn't really
standard, but it *did* work great, and his UI was fabulous. It has a wide
variety of topics that aren't covered in many books, like the Reporting
Services. It's also very readable. And if you do the exercises, you end up
building an entire huge application.

If you need help with OOP and want to know how to split your application
into three parts (presentation layer, business layer, and data layer),
check out Deborah Kurata's "Doing Objects in VB2005". You end up building
an application in this book as well, in a more standard way. It's very
pragmatic and understandable. It also has a bunch of tips for stuff like
code snippets and saving user settings and how to access SQLServer from
Visual Studio.

For C#, I liked Andrew Troelsen's "Pro C# with .Net 3.0", but it's not for
the faint of heart. It assumes you know or are familiar with C or C++. I
think he also wrote a VB version (or edited it for someone else), but I
haven't checked that one out.

Good luck.
Robin S.
-------------------------------
"Peter" <Pe***@discussions.microsoft.comwrote in message
news:50**********************************@microsof t.com...
Hi Tom and others,

I only have programming experience in Visual FoxPro and T-SQL in SQL
Server
2000/2005. I have access to VS 2005 Team Edition for Software Developer.
I
need to work on a project using XML Web Service and .Net 2.0 and above.
The
language will probably be VB.net and some c#. Need suggestions on
websites,
articles, books, and webcasts for my experience. I want to make sure
that
I'm not learning something which is being pharsed out.

"Tom Serface" wrote:
>I'd start with VS 2005. You can do a lot of .NET stuff with the Express
version you can download. There are a ton of .NET examples on
www.codeproject.com.

Tom

"Peter" <Pe***@discussions.microsoft.comwrote in message
news:D6**********************************@microso ft.com...
>I want to learn .net 2.0 and above. I have no knowledge in .net at
all.
There are Visual Studio 2005 Virtual Labs and Visual Studio .NET 2003
Virtual
Labs in MSDN. My understanding is that Visual Studio .NET 2003 is for
.net
1.0. However, it seems to me that the VS .net 2003 labs may be better
than
VS 2005 labs for beginners like me. Should I start from VS .net 2003
labs
or
go directly to VS 2005 labs?


Mar 17 '07 #7

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

Similar topics

7
by: Petr Prikryl | last post by:
Hi, Summary: In my opinion, the C-like prefix increment and decrement operators (++i and --i) should be marked as "syntax error". Current situation: try... (Python 2.4 (#60, ...)) >>> i =...
5
by: John | last post by:
Hi: I'd like to implement a simple map, which is a 2-D plane with many points, e.g., 100. The points are not evenly distributed, i.e., some points may have two neighbor points; some may have 5...
10
by: lallous | last post by:
Hello, This question was asked in comp.lang.c++ and the answers involved the use of objects whose destructors are automatically called when getting out of scope, however I was expecting...
9
by: Eric | last post by:
I have a few questions: 1. Should I learn C first or VB? 2. Should I get a book or learn from websites? 3. What book or which website is best? 4. Or should I take a course?
2
by: ranjeet | last post by:
Dear All I want your suggestion on below implementation so that i can have the most optimised solution for the below Lets assume I have the data to encode at the transmitter and decode at the...
17
by: lovecreatesbeauty | last post by:
1. In the following code, is the code (line 11) legal? Is there a notice in the document to tell callers that the parameter s1 should receive an array variable, i.e. type char, but not a variable...
31
by: John Salerno | last post by:
Ok, I know it's been asked a million times, but I have a more specific question so hopefully this won't be just the same old post. I've tried a few different editors, and I really like UltraEdit,...
34
by: pandit | last post by:
hai all, i want to become a good programmer. one of my friends ( named "arnuld", he posts here infrequently), taught me Lisp. so i am not a programming beginner. i have heard these 2 points....
20
by: W Karas | last post by:
Would the fear factor for concepts be slightly reduced if, instead of: concept C<typename T> { typename T::S; int T::mem(); int nonmem(); };
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
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: 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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.