- 68
- 596 319
DigiDev
Austria
Приєднався 10 жов 2021
Web Development using Asp.net core and Networking, Server Management, Database Management, Algorithm and Data Structures are the main topics of this channel
Passing Data to View in .Net Core MVC (ViewData-ViewBag-TempData-Model)
passing data from controller to view is one of the most important parts of any mvc application. you can pass data in .net core with multiple ways such as using ViewData, ViewBag, TempData or using a mode and in this video we are going throw all of them.
Course Video's in Order :
0 - Demo : ua-cam.com/video/d1ZZWKJmfJk/v-deo.html
1 - MVC Architecture : ua-cam.com/video/yfckH7hbCEw/v-deo.html
2 - Project Creation video : ua-cam.com/video/hs7nCMEYtz4/v-deo.html
3 - Middlewares : ua-cam.com/video/BDmTpMtn0cI/v-deo.html
4 - Routing : ua-cam.com/video/M1pvp2NvO1g/v-deo.html
5 - Config our Views : ua-cam.com/video/oJTtjlku6E0/v-deo.html
6 - Config Database : ua-cam.com/video/2-eUqgmFvtY/v-deo.html
🔥 Why Watch?
Simplified explanations of complex concepts.
Practical examples to help you implement what you learn.
Boost your web development skills with .NET Core MVC.
🔔 Subscribe for more .NET Core tutorials and stay ahead in your web development journey!
#ASPNETCore #DotNetCore #MVC #Programming #Csharp
Course Video's in Order :
0 - Demo : ua-cam.com/video/d1ZZWKJmfJk/v-deo.html
1 - MVC Architecture : ua-cam.com/video/yfckH7hbCEw/v-deo.html
2 - Project Creation video : ua-cam.com/video/hs7nCMEYtz4/v-deo.html
3 - Middlewares : ua-cam.com/video/BDmTpMtn0cI/v-deo.html
4 - Routing : ua-cam.com/video/M1pvp2NvO1g/v-deo.html
5 - Config our Views : ua-cam.com/video/oJTtjlku6E0/v-deo.html
6 - Config Database : ua-cam.com/video/2-eUqgmFvtY/v-deo.html
🔥 Why Watch?
Simplified explanations of complex concepts.
Practical examples to help you implement what you learn.
Boost your web development skills with .NET Core MVC.
🔔 Subscribe for more .NET Core tutorials and stay ahead in your web development journey!
#ASPNETCore #DotNetCore #MVC #Programming #Csharp
Переглядів: 138
Відео
Creating Models And Setup Entity Framework in .Net MVC
Переглядів 439Місяць тому
we can discus that the most important part of your application is your database design and the data that flows throw your application, in this video we learn how we can create our models for entity framework core and create out database, we learn about configuring entity framework and our main objective is for you to understand the code you write, so we talk about small details and try differen...
Adding and configuring Views in .Net Core MVC
Переглядів 121Місяць тому
configuring views is one of the core steps in building .net core mvc projects, in this video we will import the resume project html files and, seperate the header and footer and setup our views in .net core Course Video's in Order : 0 - Demo : ua-cam.com/video/d1ZZWKJmfJk/v-deo.html 1 - MVC Architecture : ua-cam.com/video/yfckH7hbCEw/v-deo.html 2 - Project Creation video : ua-cam.com/video/hs7n...
Routing in ASP.NET Core MVC (Beginners Guide)
Переглядів 1,9 тис.4 місяці тому
Are you looking to master routing in ASP.NET Core MVC? This step-by-step tutorial covers everything you need to know about routing in .NET Core MVC, making it easy to map requests to the right controllers and actions in your web applications. Related Video's : Dependency Injection video : ua-cam.com/video/0ChyyqutCSM/v-deo.html C# Full course for beginners : ua-cam.com/video/rifLtuJC8Is/v-deo.h...
Middleware in Asp.Net Core (Beginner Friendly)
Переглядів 8354 місяці тому
middleware's are the request pipelines of our application, means that every request will go through the middleware's before reaching the controllers and go through them one more time before returning the result to the user, learning about middleware's are crucial for every .NET core developer to manipulate the requests or the result of the application. in this video we learn how middleware's ar...
MVC in .Net Core - Creating Project
Переглядів 4194 місяці тому
Learn how to structure your project efficiently, design seamless user interfaces, and integrate powerful functionalities within the MVC architecture. Elevate your coding game and master the art of creating dynamic web applications with MVC in .NET Core. Let's dive in! #mvc #dotnetcore #mvcproject
MVC Architecture in 3 Minutes (ANIMATED)
Переглядів 9735 місяців тому
MVC architecture is one of the most used architectures and is very easy to learn, in this video we learn what an architecture is and how MVC architecture works, we also go throw an example to see the working flow in theory. 00:00 intro 00:22 explanation 01:30 example 02:38 outro #programming #dotnet #education
Fastest Search Algorithm in C# - Binary Search
Переглядів 1885 місяців тому
Binary Search is the fastest searching algorithm, it is the best algorithm for the large lists and big data search, which is why adding this algorithm to your toolkit is necessary 00:00 Theory 03:20 Implementation (code) github : github.com/alihaghshenas/DataStructure #csharp #dsa #algorithm
Linear Search in C# - Algorithm Explained!
Переглядів 1705 місяців тому
Learn all about linear search in C# with this detailed algorithm explanation video! Perfect for beginners looking to understand the basics of searching algorithms. github code #csharp #linearsearch #algorithm
Cool Appsetting.json injection (Add it IN your Toolkit)
Переглядів 1065 місяців тому
reading from appsetting.json and storing the values inside a model, then injecting that model in any class is what we are going to learn in this video. so watch till the end and add these to your toolkit github source : github.com/alihaghshenas/Reading-From-Appsetting.json dependency injection video : ua-cam.com/video/0ChyyqutCSM/v-deo.html crud with entity framework video : ua-cam.com/video/sw...
Dependency Injection In .Net Core in 6 Minutes! (Explained)
Переглядів 4695 місяців тому
Welcome to our quick and comprehensive guide on Dependency Injection in .Net Core! In just 6 minutes, we'll break down everything you need to know about this essential design pattern and how to implement it effectively in your .Net Core applications. 🔍 What You'll Learn: What is Dependency Injection? Why Dependency Injection is important in software development. How to set up Dependency Injecti...
Entity Framework in .Net 8 Web API - CRUD Operation
Переглядів 3666 місяців тому
crud in any backend language is the first thing you should learn, in this video we are going to learn about doing crud operation in .net core 8 web api using entity framework project : github.com/alihaghshenas/Simple-Crud-.net-8-using-Entity-Framework you can also watch the Dependency injection video which you learn about configuring entity framework using dependency injection Dependency Inject...
Asp.Net Core Web API Tutorial: How to Upload Files
Переглядів 8 тис.11 місяців тому
Lean how to upload files in ASP.net core WEB API using C# programming language. In this Asp.Net Core Web API tutorial, we'll show you how to upload files using C#. Whether you're a beginner or an experienced developer, you'll learn how to handle file uploads in your web API project with step-by-step instructions. Get ready to take your web development skills to the next level! like & subscribe
Asp.net Core MVC 8 with Full Resume Project (Project Overview)
Переглядів 57011 місяців тому
Learn asp.net core mvc in a fully free playlist, in this course we will work on a personal resume website and you will learn from very basic to advance. you should already be familiar with c# programming language, i have a full course on c# if you don't know about it so go check it out . Full C# Course in 1 hour :ua-cam.com/video/rifLtuJC8Is/v-deo.html Edited Template we gonna use in the course...
Rock, Paper, Scissors: New Algorithm! 👊✋✌️ (Most Efficient)
Переглядів 1,4 тис.11 місяців тому
Rock, Paper, Scissors: New Algorithm! 👊✋✌️ (Most Efficient)
C# Tutorial For Beginners [FULL COURSE in 1 Hour]
Переглядів 327Рік тому
C# Tutorial For Beginners [FULL COURSE in 1 Hour]
C# Tutorial for Beginners - Classes and Objects (10)
Переглядів 75Рік тому
C# Tutorial for Beginners - Classes and Objects (10)
🌟 Mastering Star Topology in Cisco Packet Tracer 2024: A Comprehensive Networking Tutorial
Переглядів 690Рік тому
🌟 Mastering Star Topology in Cisco Packet Tracer 2024: A Comprehensive Networking Tutorial
Step-by-Step Tutorial: Setting up Bus Topology in Cisco Packet Tracer 2024 (FAST)
Переглядів 2,9 тис.Рік тому
Step-by-Step Tutorial: Setting up Bus Topology in Cisco Packet Tracer 2024 (FAST)
Network Types - PAN, LAN,WLAN,CAN,MAN,WAN (Animated)
Переглядів 181Рік тому
Network Types - PAN, LAN,WLAN,CAN,MAN,WAN (Animated)
🌐 Networking Fundamentals 2024 - FREE COURSE
Переглядів 53Рік тому
🌐 Networking Fundamentals 2024 - FREE COURSE
C# Tutorial for Beginners - Methods and Functions (9)
Переглядів 21Рік тому
C# Tutorial for Beginners - Methods and Functions (9)
C# Tutorial for Beginners - Lists and Debugging (7)
Переглядів 48Рік тому
C# Tutorial for Beginners - Lists and Debugging (7)
C# Tutorial for Beginners - Conditions (5)
Переглядів 70Рік тому
C# Tutorial for Beginners - Conditions (5)
C# Tutorial for Beginners - Type Conversion (4)
Переглядів 52Рік тому
C# Tutorial for Beginners - Type Conversion (4)
C# Tutorial for Beginners - Variables (3)
Переглядів 80Рік тому
C# Tutorial for Beginners - Variables (3)
C# Tutorial for Beginners - User Input (2)
Переглядів 73Рік тому
C# Tutorial for Beginners - User Input (2)
C# Tutorial for Beginners - Hello World (1)
Переглядів 624Рік тому
C# Tutorial for Beginners - Hello World (1)
thank you
I am really appreciating u man... You are the best I saw on youtube for learning this topic ❤🎉 anyway, merry christmas 🎅 ❤
Thank you very much ❤❤❤
THE BEST, THE BEST, THE BEST
Without doubt, the BEST introduction to cisco packet tracer EVER made.
Why does my DHCP not work although your DHCP does work? I have the “Client” PC and the “DHCPServ” connected to the same switch! I keep getting the “DHCP Failed. APIPA is being used.”
thanks
thanks
Hey bro, You are moving the mouse before stating what you want to do. It should be the opposite. First state what you want to do and THEN, start moving the mouse.
These videos are great and easy to follow. Thank you for your good work.
thank you❤❤
Bro is on meth during this guide
It's not removes dependacy. You are still dependent. That;s why it's called depencecy injeciot. YOU ARE DEPNEDENT but you are injecting depndecies instead of hard coding.
You are doing great explanation🤩, why stopped making such videos?
the best packet tracer playlist i've seen so far !
Sir it's showing error like connection timeout
thank you for this tutorial..big help.More power to your channel .
i have to use this useless app to pass a boring class that nobody cares about, thx for tutorial
plesse do more videos
1:21:55 Another way to get the DHCP IoT devices to use IP's that are in range is to shut off the access point, and turn it back on. I did still have to manually switch one IoT from DHCP to Static, then back to DHCP but the rest seemed to work automatically. :) Not a big deal when it's just 4 IoT, but if it was 40, it'd save a lot of clicking.
underrated yt channel
SORRY,BUT THIS VIDEO IS WRONG HE SWAPPED THE DEFAULT GATEWAYS.HE WAS NON-CHALLANT THROUGHOUT THE COURSE.I AM NO MORE WATCHING THIS
Thank u for helping with the fundamental
Is he on amfethamines, impossible to follow this speedrun
this is the introduction of the course and hes just explaining the things you are going to learn in the course, you can watch the full course for free in the channel
its showing connection timeout
Merci beaucoup pour ces explications. Cela fait 3 jours que je cherche une solution. Je désespérais car les exemple vus et testés sur le net ne fonctionnaient jamais, et me posaient plus de problèmes qu'ils n'en résolvaient. Jamais le bon framework, toujours des méthodes et façons de faire obsolètes. Grâce à vous j'ai pu enfin construire le bon contrôleur. !!! Cependant, vous ne montrez pas le code cshtml de la vue. Je rencontre un problème car mon IFormFile est toujours Null dans mon contrôleur. J'essaie d'utiliser "dropzone" 6 (plusieurs fichiers téléchargés)
Thank you for this!
Great
Rick and Morty hook in the beginning is Gold
This is great, but could you do a tutorial on IP helpers? Because I want to create subnets and connect them all to a central router which will have a DHCP server somewhere, and since routers don't propagate DHCP request broadcasts i need to know how to set up an ip helper. Much thanks!
Not using the commands?
I’m new to this but I think you are too quick with your illustrations making it difficult to understand and follow.
I binged this series for my assignment. Your explanation is perfect. Thank you so much, I hope your channel grows more.
WOW i love packet tracer!!!!!!!!!!!!
Why do you put opposite default gateway? Thats not how it works. It doesnt work. You are supposed to use the same default gateway on each side of the computers.
very nice tankyou for this video :)
great... that top task bar though
Even the lowest speed is not working for my eyes!!
this is the introduction of the course and im just explaining the things you are going to learn in the course, you can watch the full course for free in the channel
Perfectly explained! 👍👌
i love u mate
Tq❤️
absolute simplicity, eazy to understand and straight to the point video, thank you!
Siento que se retrocedió el tiempo hace 12 años, recordé todo :) Gracias , en la universidad el maestro daba sueño, pero contigo fue interesante ver todo el video. Magistral!!!
Im happy i got wachu said, one will i will be able to respond to comments like these in correct spanish inshallah
BANGER explanation!!!🔥🔥🔥 Thank You, my good sir.
I thought this was a packet tracer speedrun
thanks bro❤
They could find each other using apipa... 😅
Thank you for this video!
thank you very much!!!
I am studying Computer engineering and we have this course called Computer networks I think I am going to need you around. so +1 Sub