Asp.net functions

what are the most important features a web developer at asp.net should know?
I ask this question because I am a beginner and I want to learn C # and I have found many books about: ajax, edmx, asmx, custom controls, jquery, wcf, silverlight ......
therefore, in what order should I study them, and which ones are the most important?

+4
source share
7 answers

Find out about:

  • Page Life Cycle - Here
  • User and client controls - here
  • Learn how HTTP works - run here
  • Understand the difference between client side and server side code - run here
  • Learn about asp.net MVC - here
  • HTML, Javascript, and CSS (for completeness)
+7
source

If you're a complete beginner, I suggest you take a look at these technologies first:

  • HTML
  • CSS
  • Javascript / jquery

Great starters for them can be found at http://www.w3schools.com/ .

To access ASP.NET (Webforms), start with these guides: http://www.asp.net/web-forms/fundamentals .

Edit: due to years of experience or when I teach classes, the most difficult thing for beginners is the ViewState and what harm it can do for your shared pages. Take a look at Taking a Bite from an ASP.NET ViewState for a teaser on what might be harmful.

+5
source

I ask this question because I am a beginner and I want to learn C #

Carefully answering your question with a detailed description of this topic that deserves attention goes beyond the scope of this context. Therefore, I will move on to Start with Stage 1 here .

+1
source

Well, I think you should understand the main difference between developing a client app and a web page .

The webpage is stateless and thus does not preserve the actual state.

This is just a request and a response (compared to a rich client that keeps all states permanently - variables ...) When an ASP.NET page is launched, the page goes through a life cycle in which it performs a number of processing steps. You should read more about this:

http://msdn.microsoft.com/en-us/library/ms178472.aspx

0
source

Although there is no specific order below, I will follow: -

Understand the framework first and how the application or website communicates with the client.

Before anything else, cleanse your oops basics and understand the page life cycle.

Learn how to use toolbar controls.

Learn the basics of javascript.

Learn how to create your own custom control.

Learn about ajax and actually understand not only the use of already made tools.

Explore web services and wcf.

And then by this time you will have a clear idea of ​​what you should learn next.

0
source

You should also familiarize yourself with SQL Server, as it is the most widely used database with .NET.

0
source

There are many new features in asp.net4.5. The following is a list of new features:

  • HTML Editor Features
  • Javascript Editor Features
  • Css Editor Features
  • Page Inspector
  • Work with data
  • Platform features
  • HTML5 Features
  • Oauth and security features

More details about the function above: http://rajeshprajapati.blogspot.in/2013/10/asp-net-45-features.html

0
source

Source: https://habr.com/ru/post/1314406/


All Articles