473,385 Members | 2,069 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.

Typical Time to Get up and Running?

Hey, I was wondering what the typical time to get up and running to
comfortably program ASP.NET with C#.

I have done PHP, but no ASP. I have used C++ in the past and familar with
the language and methods, although I don't actively code it.

I been doing some C# reading for 3-4 days now, been making good progress.
I am touching no delegates, but the biggest thing I find I'm unconfortable
is with the framework, there is just tons of things, and feel it will take
some time to get comfortable with it all. At least what I need for day to
day ASP.NET/ADO.NET programming.
Nov 15 '05 #1
3 1204
I had ASP3/VB6 experience. I just started using it. It's radically
different from simple "HTML + Script" so it took me a day or two to realize
this. After that, everything just got easier.

Any server-side scripting experience will ensure you understand the basics
of HTML a brower's interactions with the server (headers, querystrings,
etc.). The big thing to understand is that it's all based on controls and
events. That's the main concept to get.

If you have VS.NET, within a few days you should be able to get going. I
had a project to do (estimated around 2 weeks with ASP3/VB6 COM), and I
decided to do it in ASP.NET to get a feel for it. I was done in 3 days (and
that was with the Beta 1 of V1.0 IDE!).

For ADO.NET, I guess the "main" concept was understanding DataSets and
DataAdapters. DataAdapters have commands (Select, update, insert, delete),
and are used to bridge from the database to the dataset, and vice versa.

The Framework is huge. Don't be intimidated. Feel good knowing that
anything you want to do will most likely be easily accessible :).

I also would suggest Google Groups, and the various
microsoft.public.dotnnet.aspnet* newsgroups.

-mike
MVP

"John Thomas" <jt*****@hotmail.com> wrote in message
news:u2**************@TK2MSFTNGP10.phx.gbl...
Hey, I was wondering what the typical time to get up and running to
comfortably program ASP.NET with C#.

I have done PHP, but no ASP. I have used C++ in the past and familar with
the language and methods, although I don't actively code it.

I been doing some C# reading for 3-4 days now, been making good progress.
I am touching no delegates, but the biggest thing I find I'm unconfortable
is with the framework, there is just tons of things, and feel it will take
some time to get comfortable with it all. At least what I need for day to
day ASP.NET/ADO.NET programming.

Nov 15 '05 #2
I been spending my time reading on C# and C# related programming, I have a
good handle of the language in the 3 days I been messing with it (minus
advanced things like Delegates and such), should I really just be focusing
on ASP.NET programming or with C# still?

Any good books you recommend?

I have good solid knowledge of C++, C, Perl, PHP, Delphi, VB, Java, SQL,
PLSQL. Problem is the only thing I have done any major coding in is SQL and
PHP and some need Oracle/JMS stuff with Java. I have done utilities and
"learned the language" of all the other ones, but never really did anything
big, although I have made some useful utilities in all of them. I am trying
to break the mold I made for myself by only learning a language
fundementally but rather get really good at it, it was between Java/C# I
decided on C# and want to become rather good with it and ASP.NET. But I
find it hard to really make advanced things with these languages as I get
all fumbled and worked up about reading books cover to cover and learning
everything first before I "do". Am I the only one who has this problem?
I'm really excited about the new stuff with ASP.NET, I wasn't so hot about
ASP so I never touched it.
"Michael Giagnocavo [MVP]" <mg*******@Atrevido.net> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
I had ASP3/VB6 experience. I just started using it. It's radically
different from simple "HTML + Script" so it took me a day or two to realize this. After that, everything just got easier.

Any server-side scripting experience will ensure you understand the basics
of HTML a brower's interactions with the server (headers, querystrings,
etc.). The big thing to understand is that it's all based on controls and
events. That's the main concept to get.

If you have VS.NET, within a few days you should be able to get going. I
had a project to do (estimated around 2 weeks with ASP3/VB6 COM), and I
decided to do it in ASP.NET to get a feel for it. I was done in 3 days (and that was with the Beta 1 of V1.0 IDE!).

For ADO.NET, I guess the "main" concept was understanding DataSets and
DataAdapters. DataAdapters have commands (Select, update, insert, delete), and are used to bridge from the database to the dataset, and vice versa.

The Framework is huge. Don't be intimidated. Feel good knowing that
anything you want to do will most likely be easily accessible :).

I also would suggest Google Groups, and the various
microsoft.public.dotnnet.aspnet* newsgroups.

-mike
MVP

"John Thomas" <jt*****@hotmail.com> wrote in message
news:u2**************@TK2MSFTNGP10.phx.gbl...
Hey, I was wondering what the typical time to get up and running to
comfortably program ASP.NET with C#.

I have done PHP, but no ASP. I have used C++ in the past and familar with the language and methods, although I don't actively code it.

I been doing some C# reading for 3-4 days now, been making good progress. I am touching no delegates, but the biggest thing I find I'm unconfortable is with the framework, there is just tons of things, and feel it will take some time to get comfortable with it all. At least what I need for day to day ASP.NET/ADO.NET programming.


Nov 15 '05 #3
ASP.NET is just a part of the .NET Framework. So "ASP.NET Programming"
amounts to C# with some nice front-end features to make developing web apps
easier. Do you have VS.NET? VS.NET is important, as tons of productivity
is derived from it.

There's a book called "The .NET Languages, A Quick Translation Guide", that
teaches you C#, VB.NET and some VB6 all at the same time.

For ASP.NET, I'm not sure which books would be good. I just opened VS.NET
and started playing around :). My suggestion would be to try and do a small
project that you've done in PHP. Try doing it without any inline code (only
codebehind on events and overrides). Doing a project like that REALLY got
me up to speed quickly :).

When you run into a "wall", just google group, cause most likely someone
else in your same position had the same thing :).

-mike
MVP

"John Thomas" <jt*****@hotmail.com> wrote in message
news:OR**************@TK2MSFTNGP11.phx.gbl...
I been spending my time reading on C# and C# related programming, I have a
good handle of the language in the 3 days I been messing with it (minus
advanced things like Delegates and such), should I really just be focusing
on ASP.NET programming or with C# still?

Any good books you recommend?

I have good solid knowledge of C++, C, Perl, PHP, Delphi, VB, Java, SQL,
PLSQL. Problem is the only thing I have done any major coding in is SQL and PHP and some need Oracle/JMS stuff with Java. I have done utilities and
"learned the language" of all the other ones, but never really did anything big, although I have made some useful utilities in all of them. I am trying to break the mold I made for myself by only learning a language
fundementally but rather get really good at it, it was between Java/C# I
decided on C# and want to become rather good with it and ASP.NET. But I
find it hard to really make advanced things with these languages as I get
all fumbled and worked up about reading books cover to cover and learning
everything first before I "do". Am I the only one who has this problem?
I'm really excited about the new stuff with ASP.NET, I wasn't so hot about
ASP so I never touched it.
"Michael Giagnocavo [MVP]" <mg*******@Atrevido.net> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
I had ASP3/VB6 experience. I just started using it. It's radically
different from simple "HTML + Script" so it took me a day or two to realize
this. After that, everything just got easier.

Any server-side scripting experience will ensure you understand the basics
of HTML a brower's interactions with the server (headers, querystrings,
etc.). The big thing to understand is that it's all based on controls and events. That's the main concept to get.

If you have VS.NET, within a few days you should be able to get going. I had a project to do (estimated around 2 weeks with ASP3/VB6 COM), and I
decided to do it in ASP.NET to get a feel for it. I was done in 3 days

(and
that was with the Beta 1 of V1.0 IDE!).

For ADO.NET, I guess the "main" concept was understanding DataSets and
DataAdapters. DataAdapters have commands (Select, update, insert,

delete),
and are used to bridge from the database to the dataset, and vice versa.

The Framework is huge. Don't be intimidated. Feel good knowing that
anything you want to do will most likely be easily accessible :).

I also would suggest Google Groups, and the various
microsoft.public.dotnnet.aspnet* newsgroups.

-mike
MVP

"John Thomas" <jt*****@hotmail.com> wrote in message
news:u2**************@TK2MSFTNGP10.phx.gbl...
Hey, I was wondering what the typical time to get up and running to
comfortably program ASP.NET with C#.

I have done PHP, but no ASP. I have used C++ in the past and familar

with the language and methods, although I don't actively code it.

I been doing some C# reading for 3-4 days now, been making good progress. I am touching no delegates, but the biggest thing I find I'm unconfortable is with the framework, there is just tons of things, and feel it will take some time to get comfortable with it all. At least what I need for
day to day ASP.NET/ADO.NET programming.



Nov 15 '05 #4

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

Similar topics

10
by: scrunchy2k | last post by:
Hi, I have noticed that some PHP based webpages have a similar look. For instance, text within non-overlapping, non-touching rectangles which are nicely laid out on a page. Is there some...
55
by: Haines Brown | last post by:
I've been setting font-size 1em; as the default in my style sheets. Until now, that seemed to be ok. But now I'm beginning to wonder. My aim is to have an easily readable, but not overly large...
3
by: Rick | last post by:
Hello, I ran Microsoft's free "Web Application Stress" tool to see how asp.net/c# performed against html. Are these results typical? Network: WAS ran on a server with a t3 Internet...
9
by: James Radke | last post by:
Hello, I would like to create a sorted listbox which has one property that I can set to true or false to show if the listbox should be sorted (I may potentially add another one for the sort...
2
by: Roman Mashak | last post by:
Hello, All! I wonder are there any typical, common used practises to organize all #include's in the large/medium size project. Try to explain what I mean: suppose I have three tranlsation units...
2
by: upperclass | last post by:
Hi, I'm trying to find a decent way to measure program running time. I know clock() is probably the standard way of doing it but clock_t overflows too quickly. The target program running time...
3
by: bluedogsd | last post by:
I have a new server RHE4 and I am having an issue I have never had before and it's kind of urgent. Running Apache 2.0 I need the web server to have writable access and getting denied - I'm pretty...
2
by: Steve | last post by:
Hi All, I've been trying to come up with a good way to run a certain process at a timed interval (say every 5 mins) using the SLEEP command and a semaphore flag. The basic thread loop was always...
9
by: Ross | last post by:
I'm a newbie at this, and have searched a lot but can't find something that seems appropriate for measuring a recurring elapsed time. Creating an object with: var mydate = new Date(); seems...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
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,...
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.