473,320 Members | 2,092 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,320 software developers and data experts.

How much C# would be involved in writing an ASP.Net site?

Hi all,

I've just finished learning C#. I would like to move onto learning ASP.NET
but I would like to produce an ASP.NET site using C# so to cement my C#
skills. If I were to produce a basic ASP.NET site (say about car's) how much
C# would be involved and how much ASP.NET would be involved? i.e. What would
be the ratio between C# and ASP.NET code??

Thanks in advance,
Steve.
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1
Nov 19 '05 #1
8 1215
Steve1 via DotNetMonster.com wrote:
I've just finished learning C#. I would like to move onto learning
ASP.NET but I would like to produce an ASP.NET site using C# so to
cement my C# skills. If I were to produce a basic ASP.NET site (say
about car's) how much C# would be involved and how much ASP.NET would
be involved? i.e. What would be the ratio between C# and ASP.NET
code??


ASP.NET is simply a terminology for using .NET code (e.g. C#) for web
applications, so all of your coding would be in C# (as well as using HTML,
of course!).
Nov 19 '05 #2
Steve,

As a beginner, you will probably start with in a heavy server-side oriented
style with a lot of C#. As you progress and pick up experience, you will
transfer more and more things to client-side javascript code.

Eliyahu

"Steve1 via DotNetMonster.com" <u14291@uwe> wrote in message
news:550843a278457@uwe...
Hi all,

I've just finished learning C#. I would like to move onto learning ASP.NET but I would like to produce an ASP.NET site using C# so to cement my C#
skills. If I were to produce a basic ASP.NET site (say about car's) how much C# would be involved and how much ASP.NET would be involved? i.e. What would be the ratio between C# and ASP.NET code??

Thanks in advance,
Steve.
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1

Nov 19 '05 #3
> If I were to produce a basic ASP.NET site (say about car's) how much
C# would be involved and how much ASP.NET would be involved?
Based upon your description of the requirements, somewhere between a
paragraph and an encyclopedia.
What would
be the ratio between C# and ASP.NET code??
C# code
_______________

ASP.NET code
Seriously, knowing the syntax of a programming language is just the first
step on a long, difficult, and highly rewarding road to becoming a serious
professional programmer. If you've written Windows executables with C#, you
have made a start, but are a long way from creating an ASP.Net web
application. An ASP.Net web application is a network application that runs
on a web server. It handles multiple clients at the same time, and involves
all of the other network application issues as well. In addition, it
operates in the context of the stateless HTTP protocol, which means that
you're going to have to learn a whole new way of managing memory and state.
The user interface is mostly HTML and XML , text markup languages that are
spit out to the client AS text, and you need to understand HTML and XML as
well. The client browser has a highly limited capacity to perform tasks, and
operates in an extremely strict security context (unlike a Windows Forms
executable). You will have to learn JavaScript, and probably CSS as well,
and understand what can and cannot be done in a browser.

Do yourself a favor and get a good book (or 2 or 3) about ASP.Net before you
try to jump into it. If you don't have it already, the Microsoft .Net SDK is
an invaluable resource, and it's a free download:

http://www.microsoft.com/downloads/d...displaylang=en

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Big things are made up of
lots of little things.
"Steve1 via DotNetMonster.com" <u14291@uwe> wrote in message
news:550843a278457@uwe... Hi all,

I've just finished learning C#. I would like to move onto learning
ASP.NET
but I would like to produce an ASP.NET site using C# so to cement my C#
skills. If I were to produce a basic ASP.NET site (say about car's) how
much
C# would be involved and how much ASP.NET would be involved? i.e. What
would
be the ratio between C# and ASP.NET code??

Thanks in advance,
Steve.
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1

Nov 19 '05 #4
Thanks to all the guy's who've replied and thanks Kevin for your informative
reply.

All I really want to do is produce a 10-ish page web site on a topic about
cars or something. This would allow me to learn a new skill (ASP.NET) but
also cement my C# skills. Although, Kevin I'm wondering if start learning
ASP.NET it will totalling distract me from C# and thus me probably forgetting
C#!??

Thanks,
Dan.
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1
Nov 19 '05 #5
heh...I didn't think it was possible to "finish" learning a programming
language... ;)

"Steve1 via DotNetMonster.com" <u14291@uwe> wrote in message
news:550843a278457@uwe...
Hi all,

I've just finished learning C#. I would like to move onto learning
ASP.NET
but I would like to produce an ASP.NET site using C# so to cement my C#
skills. If I were to produce a basic ASP.NET site (say about car's) how
much
C# would be involved and how much ASP.NET would be involved? i.e. What
would
be the ratio between C# and ASP.NET code??

Thanks in advance,
Steve.
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1

Nov 19 '05 #6
You have to work with it every day. I found that I get really good if I
work in the language every day. When I take a vacation or get busy with
other things for a while, then go back to program, I find that I've
forgotten how to do even simple things. Always keep the reference books
handy...

"Steve1 via DotNetMonster.com" <u14291@uwe> wrote in message
news:550a5878618d7@uwe...
Thanks to all the guy's who've replied and thanks Kevin for your
informative
reply.

All I really want to do is produce a 10-ish page web site on a topic about
cars or something. This would allow me to learn a new skill (ASP.NET) but
also cement my C# skills. Although, Kevin I'm wondering if start learning
ASP.NET it will totalling distract me from C# and thus me probably
forgetting
C#!??

Thanks,
Dan.
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1

Nov 19 '05 #7
re:
I'm wondering if start learning ASP.NET it will totally distract
me from C# and thus me probably forgetting C#!??
Only if you learn ASP.NET using VB.NET.

;-)

There's three things you can do with C# :

1. Write Windows Applications
2. Write Web Applications
3. Write Console Applications

No matter which type of applications you write, you can't
forget C# because you'll be using C# to write them with.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"Steve1 via DotNetMonster.com" <u14291@uwe> wrote in message news:550a5878618d7@uwe... Thanks to all the guy's who've replied and thanks Kevin for your informative
reply.

All I really want to do is produce a 10-ish page web site on a topic about
cars or something. This would allow me to learn a new skill (ASP.NET) but
also cement my C# skills. Although, Kevin I'm wondering if start learning
ASP.NET it will totalling distract me from C# and thus me probably forgetting
C#!??

Thanks,
Dan.
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1

Nov 19 '05 #8
Hey guy's, again much appreciated!!!!!!!!!!
--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200509/1
Nov 19 '05 #9

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

Similar topics

5
by: mark1822 | last post by:
Hi, I am trying to figure out if I should learn C and C++ to write CGI programs, or if I should just use PHP for my web site. I want to write a high traffic website that would call executibles...
7
by: Brian Burgess | last post by:
Hi all, Anyone see anything wrong with the following: *************************************************************** <%@ LANGUAGE="VBSCRIPT" %> <% Option Explicit Dim nAcctNbr Dim...
17
by: Eric Lindsay | last post by:
Is learning to write CSS a better use of time than finding and using a package that produces complete web pages? I've moved to a new platform (Macintosh), taking with me about 400 personal web...
2
by: Charles | last post by:
I am working on writing a script that would allow for about twenty users to log into a web site that uses forms authentication. This solution is still in devlopment so the only thing that I need...
6
by: rekaeps | last post by:
We are developing an ASP.NET 2.0 (C#) application, and I'm having troubles sending e-mail from the server when accessing the web site from a separate client computer. Also, in the same scenario,...
0
by: Jeff Rush | last post by:
I'd like to extend an invitation to those who would like to get involved in advocating the use of Python. In August, the PSF hired me, for a 6-mo contract, to coordinate the Python advocacy...
1
by: thermate | last post by:
http://www.latimes.com/news/nationworld/nation/la-na-libby26jan26,1,2730931.story?coll=la-headlines-nation Aide testifies Cheney helped effort to discredit Wilson By Richard B. Schmitt, Times...
3
by: Mihai Mosila | last post by:
Please, be sure of my full respect for what you deal with. My name is Mihai Mosila, Y live in Romania and Y am kindli applyng to you in order to assist me in the following programming matter: ...
1
by: Dutt | last post by:
Writing/Developing Facebook Applications in .NET using Facebook.NET SDK http://msdotnetsupport.blogspot.com/2007/11/writing-facebook-applications-in-net.html
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
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...

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.