Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Blazor! :)

Blazor! :)

Scheduled Pinned Locked Moved The Lounge
asp-netcsharpquestionwpfcom
17 Posts 10 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Super Lloyd

    Guys, have a look at [Blazor](https://blazor.net/), try it, it's awesome! :) What is Blazor? It's Web Development finally good, MVVM+C# finally coming fully to the client side! :omg: :-D (And a few other thing, like automatically embedded static resource) Here are some getting started links, I did both in about 12 hours of study tops, I’d say, and it give you a well-rounded appreciation of the tech: [MSDN - Getting Started with Blazor](https://docs.microsoft.com/en-gb/aspnet/core/blazor/get-started?view=aspnetcore-3.0&tabs=visual-studio) [Chris Sainty - Building a Blog with Blazor](https://chrissainty.com/building-a-blogging-app-with-blazor-getting-setup/)

    A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

    M Offline
    M Offline
    megaadam
    wrote on last edited by
    #8

    I feel blazor sharp mate, I can tell ya that after six pints or so.

    "If we don't change direction, we'll end up where we're going"

    1 Reply Last reply
    0
    • S Super Lloyd

      Guys, have a look at [Blazor](https://blazor.net/), try it, it's awesome! :) What is Blazor? It's Web Development finally good, MVVM+C# finally coming fully to the client side! :omg: :-D (And a few other thing, like automatically embedded static resource) Here are some getting started links, I did both in about 12 hours of study tops, I’d say, and it give you a well-rounded appreciation of the tech: [MSDN - Getting Started with Blazor](https://docs.microsoft.com/en-gb/aspnet/core/blazor/get-started?view=aspnetcore-3.0&tabs=visual-studio) [Chris Sainty - Building a Blog with Blazor](https://chrissainty.com/building-a-blogging-app-with-blazor-getting-setup/)

      A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

      M Offline
      M Offline
      Marc Clifton
      wrote on last edited by
      #9

      I will definitely take a look. Thanks for the post and links!

      Latest Article - A 4-Stack rPI Cluster with WiFi-Ethernet Bridging Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

      1 Reply Last reply
      0
      • S Super Lloyd

        Guys, have a look at [Blazor](https://blazor.net/), try it, it's awesome! :) What is Blazor? It's Web Development finally good, MVVM+C# finally coming fully to the client side! :omg: :-D (And a few other thing, like automatically embedded static resource) Here are some getting started links, I did both in about 12 hours of study tops, I’d say, and it give you a well-rounded appreciation of the tech: [MSDN - Getting Started with Blazor](https://docs.microsoft.com/en-gb/aspnet/core/blazor/get-started?view=aspnetcore-3.0&tabs=visual-studio) [Chris Sainty - Building a Blog with Blazor](https://chrissainty.com/building-a-blogging-app-with-blazor-getting-setup/)

        A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

        realJSOPR Offline
        realJSOPR Offline
        realJSOP
        wrote on last edited by
        #10

        It looks really interesting, and I want to use it, but it's experimental status keeps me from doing so.

        ".45 ACP - because shooting twice is just silly" - JSOP, 2010
        -----
        You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
        -----
        When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

        1 Reply Last reply
        0
        • S Super Lloyd

          Guys, have a look at [Blazor](https://blazor.net/), try it, it's awesome! :) What is Blazor? It's Web Development finally good, MVVM+C# finally coming fully to the client side! :omg: :-D (And a few other thing, like automatically embedded static resource) Here are some getting started links, I did both in about 12 hours of study tops, I’d say, and it give you a well-rounded appreciation of the tech: [MSDN - Getting Started with Blazor](https://docs.microsoft.com/en-gb/aspnet/core/blazor/get-started?view=aspnetcore-3.0&tabs=visual-studio) [Chris Sainty - Building a Blog with Blazor](https://chrissainty.com/building-a-blogging-app-with-blazor-getting-setup/)

          A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

          D Offline
          D Offline
          Dean Roddey
          wrote on last edited by
          #11

          I think I replied to something similar a bit back, but for the record... Blazor's big advantage is that you get to use the same language on client and server and it's a real language, not a toy language. Those two things in and of themselves should make everything else obsolete for the most part, IMO. And of course they are getting ever closer to a practical WASM based client, which makes it even more appealing. It's pretty easy to use and to create new components. It is HTML/CSS based ultimately, which sucks, but that is an equally distinct suckage quotient for pretty much all its competitors so it's a wash in terms of comparisons. It's pretty straightforward to dynamically generate content, though it has limitations in terms of component inheritance wrt to component containment, which kind of sucks and they apparently don't care enough about that to do anything about it since they silently closed my issue last week on the matter. It has a quite flexible embedded code/data in HTML scheme that makes it pretty easy to just embed references to component members and have them become part of the HTML, or to easily generate HTML content in place with code snippets. And/or you can have 'code behind' for much more complex processing. However, because it's HTML based but it's sort of 'double buffered' in that they maintain their own hierarchy and go from that to HTML, changes can't really automatically show up. You have to force a refresh in lots of cases to get that to happen, and it's easy to miss places where you need to do that.

          Explorans limites defectum

          1 Reply Last reply
          0
          • S Super Lloyd

            Guys, have a look at [Blazor](https://blazor.net/), try it, it's awesome! :) What is Blazor? It's Web Development finally good, MVVM+C# finally coming fully to the client side! :omg: :-D (And a few other thing, like automatically embedded static resource) Here are some getting started links, I did both in about 12 hours of study tops, I’d say, and it give you a well-rounded appreciation of the tech: [MSDN - Getting Started with Blazor](https://docs.microsoft.com/en-gb/aspnet/core/blazor/get-started?view=aspnetcore-3.0&tabs=visual-studio) [Chris Sainty - Building a Blog with Blazor](https://chrissainty.com/building-a-blogging-app-with-blazor-getting-setup/)

            A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

            M Offline
            M Offline
            Matthew Dennis
            wrote on last edited by
            #12

            This week's [ASP.NET Community Standup - April 16th 2019 - Blazor Updates with Dan Roth and Steve Sanderson - YouTube](https://www.youtube.com/watch?v=ap60h3eQE5Y&list=PL1rZQsJPBU2StolNg0aqvQswETPcYnNKL&index=0) is, surprise, all about Blazor and the latest and upcoming bits. At least once you get past the Community Links.

            "Time flies like an arrow. Fruit flies like a banana."

            D 1 Reply Last reply
            0
            • M Matthew Dennis

              This week's [ASP.NET Community Standup - April 16th 2019 - Blazor Updates with Dan Roth and Steve Sanderson - YouTube](https://www.youtube.com/watch?v=ap60h3eQE5Y&list=PL1rZQsJPBU2StolNg0aqvQswETPcYnNKL&index=0) is, surprise, all about Blazor and the latest and upcoming bits. At least once you get past the Community Links.

              "Time flies like an arrow. Fruit flies like a banana."

              D Offline
              D Offline
              Dean Roddey
              wrote on last edited by
              #13

              And this now indicating that the first official release candidate preview coming: Blazor Update: 'The End of the Experiment Is in Sight' -- Visual Studio Magazine[^]

              Explorans limites defectum

              K 1 Reply Last reply
              0
              • D Dean Roddey

                And this now indicating that the first official release candidate preview coming: Blazor Update: 'The End of the Experiment Is in Sight' -- Visual Studio Magazine[^]

                Explorans limites defectum

                K Offline
                K Offline
                Kent Sharkey
                wrote on last edited by
                #14

                And here it is! ASP.NET Blog | Blazor now in official preview![^]

                TTFN - Kent

                1 Reply Last reply
                0
                • S Super Lloyd

                  Guys, have a look at [Blazor](https://blazor.net/), try it, it's awesome! :) What is Blazor? It's Web Development finally good, MVVM+C# finally coming fully to the client side! :omg: :-D (And a few other thing, like automatically embedded static resource) Here are some getting started links, I did both in about 12 hours of study tops, I’d say, and it give you a well-rounded appreciation of the tech: [MSDN - Getting Started with Blazor](https://docs.microsoft.com/en-gb/aspnet/core/blazor/get-started?view=aspnetcore-3.0&tabs=visual-studio) [Chris Sainty - Building a Blog with Blazor](https://chrissainty.com/building-a-blogging-app-with-blazor-getting-setup/)

                  A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #15

                  Client-server is back!

                  "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal

                  1 Reply Last reply
                  0
                  • S Super Lloyd

                    Guys, have a look at [Blazor](https://blazor.net/), try it, it's awesome! :) What is Blazor? It's Web Development finally good, MVVM+C# finally coming fully to the client side! :omg: :-D (And a few other thing, like automatically embedded static resource) Here are some getting started links, I did both in about 12 hours of study tops, I’d say, and it give you a well-rounded appreciation of the tech: [MSDN - Getting Started with Blazor](https://docs.microsoft.com/en-gb/aspnet/core/blazor/get-started?view=aspnetcore-3.0&tabs=visual-studio) [Chris Sainty - Building a Blog with Blazor](https://chrissainty.com/building-a-blogging-app-with-blazor-getting-setup/)

                    A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

                    K Offline
                    K Offline
                    kdmote
                    wrote on last edited by
                    #16

                    It seems like all the demo pages are pretty slow to load. Painful even (although slightly more bearable on subsequent loads). Is that an artifact of the framework itself?

                    S 1 Reply Last reply
                    0
                    • K kdmote

                      It seems like all the demo pages are pretty slow to load. Painful even (although slightly more bearable on subsequent loads). Is that an artifact of the framework itself?

                      S Offline
                      S Offline
                      Super Lloyd
                      wrote on last edited by
                      #17

                      I would guess this demo page is poorly written.... and also maybe, use an early version... Anyhow from the behavior (slow first load, fater subsequent load) I would guess these demo have lots of large DLLs to download to run. And DLLs are downloaded only once though... Press F12 and look at network statistics...

                      A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups