i am currently learning desktop/ console app programming with c#
i am curious to know when you write asp.net web pages do you still use the same classes
that you use in writing desktop apps
eg using system
using threading
etc
or is it that when you write asp.net web pages you are only allowed to use a certain category of classes.
thnx
Loading
Nitesh KejriwalPosted Sep 7, 2014, 11:01 PM
http://www.c-sharpcorner.com/ebooks/free/53/programming-C-Sharp-for-beginners.aspx
http://www.c-sharpcorner.com/ebooks/free/80/programming-Asp-Net-mvc-5.aspx
Jignesh TrivediPosted Sep 8, 2014, 1:02 AM
Hi,
system, System.Threading etc are .net framework classes i.e. these are common for all application which can built by Visual studio IDE. These frame work classes (in form of dll) sored in GAC
Basically there are some special classed those can be used to support or act as base class to develop web application or windows application.
For example system.web is required to develop web application
system.web.mvc required to develop MVC application
hope this will help you.