No video

C# Razor Pages - Complete Tutorial

  Рет қаралды 66,832

tutorialsEU - C#

tutorialsEU - C#

Күн бұрын

Пікірлер: 45
@tutorialsEUC
@tutorialsEUC Жыл бұрын
🚀C# Progress Academy - Become a senior C# developer: academy.tutorials.eu/p/csharp-progress-academy
@TheBigsmooth9
@TheBigsmooth9 6 ай бұрын
You make this look so damn easy. Ive been learning C# for a year and a half now but not consistently....Every time I continue to learn I need to learn almost everything again lol
@nickvledder
@nickvledder 6 ай бұрын
That’s exactly what I dislike about C# development-environment… too much to remember.
@daddyhatesu
@daddyhatesu 26 күн бұрын
See u found your problem yourself, consistency. Trust me, if u are consistent, u can do it.
@navinee_
@navinee_ 7 ай бұрын
This is exactly what I've been looking for, short and just what is needed 💯 Thanks! ✨🙌
@GlennInkoom
@GlennInkoom 3 ай бұрын
Splendid explanation, very concise
@akrooma
@akrooma Жыл бұрын
The video ended : 25:19 - you lied to me but hey.. great stuff.. i learned a lot .. thank you so much
@prashantkori8245
@prashantkori8245 6 ай бұрын
Short and Simple , very good
@nickearle294
@nickearle294 3 ай бұрын
Hi, I'm new to Razor and this tutorial has inspired me to do more. I love the use of the InMemory Db and wondered if there was an easy way to pre-populate this Db. Best option for me would be using a list in a CSV file. I want to use this to display our Family Recipes, so the list would not get update very often.
@lewdards1127
@lewdards1127 2 ай бұрын
Thank you my amigo!
@guillermomazzari8320
@guillermomazzari8320 10 күн бұрын
thanks, I am currently on a project that uses razor pages, but I prefer blazor any day, my om said razor pages is better for SEO, do you have any comments on that?
@brewzonekeeone5724
@brewzonekeeone5724 8 ай бұрын
Really helpful. I'll check out the rest for sure thanks.
@di.rodriguez
@di.rodriguez 8 ай бұрын
great video, precise and well explained. Love it!
@pavelvitov2773
@pavelvitov2773 5 ай бұрын
Great video man!
@scifithoughts3611
@scifithoughts3611 Ай бұрын
Nice work. Thank you! This looks the same as ASP pages from the 2000s. I wonder if it’s mostly a back and infrastructure upgrade. This looks similar to what I’ve seen in the past. Can anyone who’s more familiar with the Razor versus ASPX architecture, comment as to the superiority of razor pages?
@Jacob_Price
@Jacob_Price Жыл бұрын
thanks this helps a lot!
@larrycs22
@larrycs22 Жыл бұрын
Great video! Thank you very much. What if I would like to use SQL database in my project, how should I connect it?
@daamnola2579
@daamnola2579 Жыл бұрын
Connect String
@junaidywijaya6413
@junaidywijaya6413 5 ай бұрын
This is good, but everytime we hit Add button it is immediately update the database as well, can we adding the data on client side and add save/upload button to save to database?
@VahidAmiri-fg3xj
@VahidAmiri-fg3xj Жыл бұрын
Thanks How to add multiple functions of filters and search in razor pages. I mean in Index page
@mohammadeunus7087
@mohammadeunus7087 Жыл бұрын
You are refreshing the whole page to see the updated table. Would it be possible to just refresh the table and not the entire site?
@junior.santana
@junior.santana Жыл бұрын
No, cause razor pages are server-side rendered, when you refresh is basically the same as pressing F5 and letting the browser request the page again. However you can mix some javascript and request only the data (or only the html for the table) and replace on th client side without refreshing the whole page. Of course if your pages are very dynamic a better option would be using a client-side framework (like react, angular...) and get only the data needed (from an API) to "render" the page locally
@adeniyiajani7617
@adeniyiajani7617 11 ай бұрын
I appreciate you, please can you assist with video to upload Excel files in with the Razor Pages frame work
@darkeffect8898
@darkeffect8898 Жыл бұрын
Hello, i already have a web api project where I’ve created models, controllers and services. I want to create the front end with blazor but I’m not quite sure on whether i should do all those things again on the client side like you have on this tutorial?
@tutorialsEUC
@tutorialsEUC Жыл бұрын
Hi, we will soon release a blazor video which will answer your questions :) If you project is quite small you could just start over with the blazor template. If not you would have to implement it from scratch :) Greets
@darkeffect8898
@darkeffect8898 Жыл бұрын
@@tutorialsEUC Thank you, keep up the good work! :)
@marcelositonio2495
@marcelositonio2495 Жыл бұрын
Razing nice!'
@nathan_falkon36
@nathan_falkon36 10 ай бұрын
i created the file the same way, but for some reason Program.cs came very different, no public class Program; no includes; no constructors.
@fancygoat1352
@fancygoat1352 9 ай бұрын
You must have forgotten to disable top-down statements. Basically in newer versions of C#, and only in the main class, you are able to negate a public main entry point. I believe you can just add said Program class and main method and will work just as well.
@jimmybellmon1268
@jimmybellmon1268 10 ай бұрын
does this still work in 8.0 using VS 2022 Preview?
@flamehorizon1105
@flamehorizon1105 8 ай бұрын
It works with .NET 8.0. I was using Rider tho.
@LuigiZambetti
@LuigiZambetti Жыл бұрын
Why using Razor Pages nowadays for business web applications?
@tutorialsEUC
@tutorialsEUC Жыл бұрын
Sometime it is not you who decides what to use :) Razor Pages still gets used pretty often - you'd be suprised
@StarsManny
@StarsManny Жыл бұрын
Are you getting confused with Web Forms?
@LuigiZambetti
@LuigiZambetti Жыл бұрын
@@StarsManny No of course, but still understand why Razor Pages should be better than WebForms.
@brewzonekeeone5724
@brewzonekeeone5724 Жыл бұрын
I develop in Angular most times., but the company I work for has some applications that use Razor, so I want to increase my competency in that area.
@scifithoughts3611
@scifithoughts3611 Ай бұрын
@@LuigiZambetti I agree. Because I’m not clear that Razor is significantly better.
@bbrqi89
@bbrqi89 8 ай бұрын
Total BS
@snapback9221
@snapback9221 9 ай бұрын
rly bad
@criticalthinker1123
@criticalthinker1123 2 ай бұрын
*very bad. i'm at min 11, and so far have'nt learned much. this was supposed to to be an overview without the details of connecting to EF for example*
@criticalthinker1123
@criticalthinker1123 2 ай бұрын
@ min 15, couldn't watch it anymore. clearly this isn't about razor pages
@carlossantamaria1820
@carlossantamaria1820 13 күн бұрын
​@@criticalthinker1123 you should learn ef core then
Caching in ASP.NET C# - Memory Caching is AMAZING
12:24
tutorialsEU - C#
Рет қаралды 21 М.
Brutally honest advice for new .NET Web Developers
7:19
Ed Andersen
Рет қаралды 152 М.
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 20 МЛН
لااا! هذه البرتقالة مزعجة جدًا #قصير
00:15
One More Arabic
Рет қаралды 52 МЛН
Gli occhiali da sole non mi hanno coperto! 😎
00:13
Senza Limiti
Рет қаралды 19 МЛН
❌Разве такое возможно? #story
01:00
Кэри Найс
Рет қаралды 3,1 МЛН
Intro to ASP.NET Core Razor Pages - From Start to Published
1:16:44
IAmTimCorey
Рет қаралды 352 М.
Master C# Interfaces in 12 Minutes - Beginner Tutorial
11:37
tutorialsEU - C#
Рет қаралды 19 М.
ASP.NET Core Crash Course - C# App in One Hour
1:00:44
freeCodeCamp.org
Рет қаралды 1,5 МЛН
Dependency Injection for ASP NET Core 6.0 - An UPDATED 2022 Tutorial
8:10
Understand your C# queries! IEnumerable & IQueryable in explained
11:28
tutorialsEU - C#
Рет қаралды 35 М.
.Net  Razor pages full course | Razor pages for .net core
3:01:59
Ravindra Devrani
Рет қаралды 11 М.
ASP.NET Core Full Course For Beginners
3:43:18
Julio Casal
Рет қаралды 190 М.
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 20 МЛН