₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,329,289 members, 8,439,762 topics. Date: Sunday, 05 July 2026 at 10:46 PM

Toggle theme

Help!!!how Can I Get Started With ASP.NET? - Programming - Nairaland

Nairaland ForumScience/TechnologyProgrammingHelp!!!how Can I Get Started With ASP.NET? (1180 Views)

1 Reply (Go Down)

Help!!!how Can I Get Started With ASP.NET? by Harmeed(op): 12:33pm On Jun 05, 2024
Hello everyone,please I am a beginner programmer and I want to learn C sharp and ASP.NET in order to be a backend programmer .Please does anyone has a guide i can use?After learning the C sharp that i need, i don't know where to begin learning ASP.NET from?Please help me
Re: Help!!!how Can I Get Started With ASP.NET? by Shedrick: 2:12pm On Jun 05, 2024
What kind of System do you have?? I mean the configuration. Let's start with that.
Re: Help!!!how Can I Get Started With ASP.NET? by cj1080(m): 2:49pm On Jun 05, 2024
If you want to follow the monkey see monkey do process then use the below

Youtube:
Check for youtube beginner tutorials on Asp.net etc

absolute noob tutorial on asp.net
beginner to asp.net
asp.net begineer tutorial
etc

if you want to go the paid route
I would recommend
udemy
Skillshare
cousera

The above are all monkey see monkey do methods.

But if you want to understand what you are doing, so that you can actually learn to do critical reasoning and problem solving and debugging in asp.net.

then when you have finished watching youtube videos and udemy course till you enter tutorial hell.

Get an account in stackover and look at challenges in asp.net.

Get an account on chat.openai.com or meta.ai or blackbox.com ai and get interactive learning, focused on problem solving, critical reasoning and facing challenges.

Good luck on your journey
Re: Help!!!how Can I Get Started With ASP.NET? by john1101(m): 7:20pm On Jun 05, 2024
cj1080:
If you want to follow the monkey see monkey do process then use the below

Youtube:
Check for youtube beginner tutorials on Asp.net etc

absolute noob tutorial on asp.net
beginner to asp.net
asp.net begineer tutorial
etc

if you want to go the paid route
I would recommend
udemy
Skillshare
cousera

The above are all monkey see monkey do methods.

But if you want to understand what you are doing, so that you can actually learn to do critical reasoning and problem solving and debugging in asp.net.

then when you have finished watching youtube videos and udemy course till you enter tutorial hell.

Get an account in stackover and look at challenges in asp.net.

Get an account on chat.openai.com or meta.ai or blackbox.com ai and get interactive learning, focused on problem solving, critical reasoning and facing challenges.

Good luck on your journey
On point.
Re: Help!!!how Can I Get Started With ASP.NET? by Alphabyte3: 2:54pm On Jun 06, 2024
Harmeed:
Hello everyone,please I am a beginner programmer and I want to learn C sharp and ASP.NET in order to be a backend programmer .Please does anyone has a guide i can use?After learning the C sharp that i need, i don't know where to begin learning ASP.NET from?Please help me
U can start with Microsoft learn and Udemy just check my post as a guide .

https://www.nairaland.com/7389020/learn-asp.net-core-mvc
Re: Help!!!how Can I Get Started With ASP.NET? by Alphabyte3: 2:54pm On Jun 06, 2024
Harmeed:
Hello everyone,please I am a beginner programmer and I want to learn C sharp and ASP.NET in order to be a backend programmer .Please does anyone has a guide i can use?After learning the C sharp that i need, i don't know where to begin learning ASP.NET from?Please help me
U can start with Microsoft learn ,Microsoft doc and Udemy just check my post as a guide .

https://www.nairaland.com/7389020/learn-asp.net-core-mvc
Re: Help!!!how Can I Get Started With ASP.NET? by SUPREMOTM: 7:57pm On Jun 10, 2024
Harmeed:
Hello everyone,please I am a beginner programmer and I want to learn C sharp and ASP.NET in order to be a backend programmer .Please does anyone has a guide i can use?After learning the C sharp that i need, i don't know where to begin learning ASP.NET from?Please help me
1. Learn C# till you understand Object-Oriented Programming with C#

2. Learn T-SQL with SQL Server till you understand relational database lingo, and you can create simple databases as well as write queries using SQL Server Management Studio or Azure Data Studio.

3. Learn LINQ (Language Integrated Query) and practice applying Linq extension methods to any type of collection in C#

4. Learn Entity Framework Core (it requires knowledge from 1, 2 and 3)

5. Familiarize with the concepts of http and restful web services (API)

6. Learn ASP.Net Core Web API (The Framework for creating backend applications): It requires 1 to 5
Re: Help!!!how Can I Get Started With ASP.NET? by CodingSoft:
You can quickly start with ASP.NET Razor which is like php. After this you can then learn to write the codes inside the @{Codes} on the server side to keep them separate from the front-end html, for this you'll need to learn ASP.Net/.Net Core/.NET5 and above.

<html>
<body>
<!-- Single statement block -->
@{ var myMessage = "Hello World"; }

<!-- Inline expression or variable -->
<p>The value of myMessage is: @myMessage</p>

<!-- Multi-statement block -->
@{
string greeting = "Welcome to our site!";
string weekDay = DateTime.Now.DayOfWeek;
string greetingMessage = greeting + " Here in Huston it is: " + weekDay;
}


<p>The greeting is: @greetingMessage</p>
</body>
</html>
-------------------------------------------------------
<html>
<body>
@for(var i = 10; i < 21; i++)
{
<p>Line @i</p>
}

</body>
</html>
---------------------------------------------

@{var price=50;}
<html>
<body>
@if (price>30)
{
<p>The price is too high.</p>
}

</body>
</html>

https://www.w3schools.com/asp/razor_syntax.asp
Re: Help!!!how Can I Get Started With ASP.NET? by aswani(m): 6:46pm On Jun 13, 2024
YouTube videos, there was a really good one by a Indian guy that helped me. It was so good, I think I sent him money.
Re: Help!!!how Can I Get Started With ASP.NET? by africoders18: 6:48pm On Jun 13, 2024
Even chatgpt can teach you a big deal
Re: Help!!!how Can I Get Started With ASP.NET? by Lorayne(m): 11:59am On Aug 13, 2024
SUPREMOTM:
1. Learn C# till you understand Object-Oriented Programming with C#

2. Learn T-SQL with SQL Server till you understand relational database lingo, and you can create simple databases as well as write queries using SQL Server Management Studio or Azure Data Studio.

3. Learn LINQ (Language Integrated Query) and practice applying Linq extension methods to any type of collection in C#

4. Learn Entity Framework Core (it requires knowledge from 1, 2 and 3)

5. Familiarize with the concepts of http and restful web services (API)

6. Learn ASP.Net Core Web API (The Framework for creating backend applications): It requires 1 to 5
Hey boss... Can I send you a dm?
Re: Help!!!how Can I Get Started With ASP.NET? by SUPREMOTM: 7:21pm On Aug 30, 2024
Lorayne:
Hey boss... Can I send you a dm?
Ok
Re: Help!!!how Can I Get Started With ASP.NET? by MindHacker9009(m):
aswani:
YouTube videos, there was a really good one by a Indian guy that helped me. It was so good, I think I sent him money.
The Indian guy must be Venkat, and there is this other white guy call Tim Corey, both of them are just something else.
Here is one video from each of them from their numerous videos on ASP.Net Core and many others:

Venkat:

https://www.youtube.com/watch?v=3F9SpUYTB6Y&list=PL6n9fhu94yhX6J31qad0wSO1N_rgGbOPV

Tim Corey:

https://www.youtube.com/watch?v=1ck9LIBxO14&t=54s
Re: Help!!!how Can I Get Started With ASP.NET? by Nobody: 4:18pm On Aug 31, 2024
.Net is great for web development.
Re: Help!!!how Can I Get Started With ASP.NET? by Alphabyte3: 5:29pm On Aug 31, 2024
guysbewise:
.Net is great for web development.
.NET is built for enterprise software .
Re: Help!!!how Can I Get Started With ASP.NET? by FolaLee: 12:06am On Sep 01, 2024
Hi guys. I am currently looking for a PC. Someone recommended the 2012 MacBook but I would like to ask if there are windows Pc that’s better
Re: Help!!!how Can I Get Started With ASP.NET? by MindHacker9009(m): 8:38am On Sep 01, 2024
Alphabyte3:
.NET is built for enterprise software .
ASP.NET also has RAZOR Pages similar to PHP syntax for developing small, middle and large web applications. It also has XAML for developing both Mobile, desktop and games.

ASP.NET has built-in caching features that can dramatically improve web application performance. PHP does not have this feature built-in, but there are a number of third-party caching solutions available. So, ASP.NET will almost always perform better right out of the box, and that's important.
Re: Help!!!how Can I Get Started With ASP.NET? by Alphabyte3: 4:52pm On Sep 01, 2024
MindHacker9009:
ASP.NET also has RAZOR Pages similar to PHP syntax for developing small, middle and large web applications. It also has XAML for developing both Mobile, desktop and games.

ASP.NET has built-in caching features that can dramatically improve web application performance. PHP does not have this feature built-in, but there are a number of third-party caching solutions available. So, ASP.NET will almost always perform better right out of the box, and that's important.
MAUI is a cross platform app development framework for mobile, web and desktop development. The final long term support (LTS) will be released in November . Some bugs to support for android 15 and iOS 17 need to be fixed. .NET community is growing next year many jobs will be available for skilled developers.
Re: Help!!!how Can I Get Started With ASP.NET? by CodingSoft:
Alphabyte3:
MAUI is a cross platform app development framework for mobile, web and desktop development. The final long term support (LTS) will be released in November . Some bugs to support for android 15 and iOS 17 need to be fixed. .NET community is growing next year many jobs will be available for skilled developers.
My full respect to the Xamarin community guys that came up with a fix for an iOS issue.
1 Reply

Smart Home And Home Automation - How Did You Get Started?Looking For One Or Two People - C# & Javascript - ASP.NET Core FrameworkUsing Repository Pattern And Dependency Injection With ASP.NET MVC And EF234

Can't Connect To D Net On LinuxAny Game Programmer In The House?C#.net Fans: