Which website should I develop for asp.net training?

I worked with a windowed application in .net. But I want to learn asp.net. Therefore, I want to develop one website in such a way that when developing this website I can get the best and best knowledge of asp.net. And the development of this website covers all the most important concepts and controls on this website. And on this website the whole concept that is used on the website that is being developed nowadays should be considered. So, what should a website that I can develop to get to know asp.net better, and after developing this website I can learn asp.net better? I have never designed a website. And what features should be present on this website? And these features are usually visible on today's website. And what books should I name?

Update: which of the other technologies should I also learn as javascript, css for developing the best website of this time?

+4
source share
5 answers

First of all, make sure what ASP.NET flavor you want to learn:

  • ASP.NET Web Forms
  • ASP.NET Dynamic Data
  • ASP.NET MVC

For the aforementioned technologies, there are excellent training materials that allow you to compile a complete site and at the same time study a ton from it, to find here http://www.asp.net/web-forms/fundamentals and Nerddinner .

Update: I forgot to mention a sample music store .

Grz, Kris.

+2
source

One possibility would be to choose a fairly simple database that you are well aware of (e.g. Northwind or pubs) and make a website to display and update its data. This will help you become familiar with data display controls such as GridView and DetailsView, and with ASP.NET data binding. You can play with events and with the life cycle of an ASP.NET page. When you create a data entry form, you can learn about ASP.NET validators.

Once you do this, you will have a good foundation in ASP.NET. Most importantly, have fun!

+1
source

Create your own blog.

+1
source

Create a website that geeks from around the world can use to meet for dinner. You can call it GeekLunch.com; -)

+1
source

I would repeat the XIII answer to learning to distinguish between web forms and MVC, but if you are starting from scratch, it would be useful to learn the basics of both in order to better decide what you like.

I prefer to get a large application and then reverse engineer, some prefer to start from scratch.

You already have Nerddinner for an example MVC application.

Here are some examples of web applications:

http://forums.asp.net/default.aspx/2

They are a bit outdated, but basic principles exist.

0
source

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


All Articles