Re: ASP.NET Razor Pages

2020-04-01 Thread Greg Keogh
> Razor is so 2019.
>
> * They’ve come out with Blazor
>  now Not sure how
> widely used it is, but it does reduce the number of files to create.*
>

I'm using Blazor and it's a fabulous replacement for ASP.NET Web Forms, MVC
and JS Frameworks. The most terrible thing about Blazor though is that it
still falls back to the web browser and HTML for rendering. Now I'm hoping
that OpenSilver  will even make Blazor
redundant for making serious web apps as rich as Silverlight. This is
important because I've just started rewriting a classic Web Forms app with
Blazor, and before I go any further I have to figure out how mature
OpenSilver is, and if I can switch to it immediately (a job for the
weekend).

I thought "Razor pages" was a separate lighter replacement for full-weight
Web Forms or MVC (I think?)

*GK *


Re: ASP.NET Razor Pages

2020-04-01 Thread mike smith
On Thu, Apr 2, 2020, 09:38 Paul Jackson 
wrote:

> Razor is so 2019.
>
I'm missing 2019

> They’ve come out with Blazor
>  now
>
> Not sure how widely used it is, but it does reduce the number of files to
> create.
>
>
>
Do you actually need to create them, or are they automatically generated?
Not played with it, but it might be something to do in the WFH environment


*From:* ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com]
> *On Behalf Of *David Apelt
> *Sent:* Wednesday, 25 March 2020 9:46 PM
> *To:* ozDotNet
> *Subject:* ASP.NET Razor Pages
>
>
>
> Team,
>
>
>
> Is anyone using ASP.NET Razor Pages in a production system?
>
>
>
>
> https://docs.microsoft.com/en-us/aspnet/core/razor-pages/?view=aspnetcore-3.1=visual-studio
>
>
>
> There is any number of articles comparing them to MVC (or even WebForms)
> but what are they like when used in anger?
>
>
>
> It strikes me that they provide value but are not sufficiently
> differentiated enough from MVC to justify the futzing around with yet
> another framework.
>
>
>
> Also, I am concerned that they have not gathered enough momentum and will
> be forever considered second class to that of MVC and not benefit from deep
> community support.
>
>
>
> Thoughts?
>
>
>
> Regards
>
> Dave A
>
>
>
>
>
>
>
>
>
> Level 5, 143 Coronation Drive, Milton QLD 4064 | PO Box 1464, Milton QLD
> 4064
>
> www.transmax.com.au
>
>
> This e-mail and attachments may contain confidential or privileged
> information. If you are not the intended recipient,please notify the sender
> immediately by e-mail and then delete this message and attachments.  In
> this instance, any distribution,copying, publication, or use of this
> information for any purpose is prohibited.
>


RE: ASP.NET Razor Pages

2020-04-01 Thread Paul Jackson
Razor is so 2019.
They’ve come out with 
Blazor now
Not sure how widely used it is, but it does reduce the number of files to 
create.

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On 
Behalf Of David Apelt
Sent: Wednesday, 25 March 2020 9:46 PM
To: ozDotNet
Subject: ASP.NET Razor Pages

Team,

Is anyone using ASP.NET Razor Pages in a production system?

https://docs.microsoft.com/en-us/aspnet/core/razor-pages/?view=aspnetcore-3.1=visual-studio

There is any number of articles comparing them to MVC (or even WebForms) but 
what are they like when used in anger?

It strikes me that they provide value but are not sufficiently differentiated 
enough from MVC to justify the futzing around with yet another framework.

Also, I am concerned that they have not gathered enough momentum and will be 
forever considered second class to that of MVC and not benefit from deep 
community support.

Thoughts?

Regards
Dave A



[https://www.transmax.com.au/wp-content/uploads/2019/02/TMX50yrs_300x60.png]

Level 5, 143 Coronation Drive, Milton QLD 4064 | PO Box 1464, Milton QLD 4064
www.transmax.com.au

This e-mail and attachments may contain confidential or privileged information. 
If you are not the intended recipient,please notify the sender immediately by 
e-mail and then delete this message and attachments.  In this instance, any 
distribution,copying, publication, or use of this information for any purpose 
is prohibited.


Re: ASP.NET Razor Pages

2020-03-25 Thread Greg Keogh
> Is anyone using ASP.NET Razor Pages in a production system?
>

How did I miss the release of that? It looks like a good option for simpler
sites when the sprawling mystical plumbing of a full ASP.NET MVC app is
overkill (which is most of the time for me). It's getting a bit silly
though as we have too many choices now ... WebForms, MVC, Razor Pages, two
Blazors and OpenSilver
.

The latter looks really encouraging because it's a complete rendering
system with rich controls that breaks out of the ridiculous constraints of
HTML rendering. How long have I got to keep praying for something like
Silverlight to come back and allow the creation of rich UI apps in
the browser? I'm not sure yet how Uno fits into this, can anyone clarify?

*GK*


Re: ASP.NET Razor Pages

2020-03-25 Thread DotNet Dude
We have a few apps here using razor pages. Simpler (less files) than mvc.
Not bad but I don’t see them ever being used widely. We are mostly mvc and
webforms and they work well.

On Wed, 25 Mar 2020 at 21:45, David Apelt 
wrote:

> Team,
>
>
>
> Is anyone using ASP.NET Razor Pages in a production system?
>
>
>
>
> https://docs.microsoft.com/en-us/aspnet/core/razor-pages/?view=aspnetcore-3.1=visual-studio
>
>
>
> There is any number of articles comparing them to MVC (or even WebForms)
> but what are they like when used in anger?
>
>
>
> It strikes me that they provide value but are not sufficiently
> differentiated enough from MVC to justify the futzing around with yet
> another framework.
>
>
>
> Also, I am concerned that they have not gathered enough momentum and will
> be forever considered second class to that of MVC and not benefit from deep
> community support.
>
>
>
> Thoughts?
>
>
>
> Regards
>
> Dave A
>
>
>
>
>
>
> Level 5, 143 Coronation Drive, Milton QLD 4064
> 
> | PO Box 1464, Milton QLD 4064
> www.transmax.com.au
>
> This e-mail and attachments may contain confidential or privileged
> information. If you are not the intended recipient,please notify the sender
> immediately by e-mail and then delete this message and attachments.  In
> this instance, any distribution,copying, publication, or use of this
> information for any purpose is prohibited.


Re: ASP.NET Razor Pages

2020-03-25 Thread Grant Castner
We are using them here at pd training for some of our sites. One benefit to us 
was that these sites were previously web forms so it was an easier transition.

Grant Castner
0458 770 749
http://twitter.com/grantcastner
https://au.linkedin.com/in/grantcastner

From: ozdotnet-boun...@ozdotnet.com  on behalf 
of David Apelt 
Sent: Wednesday, March 25, 2020 8:45:50 PM
To: ozDotNet 
Subject: ASP.NET Razor Pages


Team,



Is anyone using 
ASP.NET
 Razor Pages in a production system?



https://docs.microsoft.com/en-us/aspnet/core/razor-pages/?view=aspnetcore-3.1=visual-studio



There is any number of articles comparing them to MVC (or even WebForms) but 
what are they like when used in anger?



It strikes me that they provide value but are not sufficiently differentiated 
enough from MVC to justify the futzing around with yet another framework.



Also, I am concerned that they have not gathered enough momentum and will be 
forever considered second class to that of MVC and not benefit from deep 
community support.



Thoughts?



Regards


Dave A





[https://www.transmax.com.au/wp-content/uploads/2019/02/TMX50yrs_300x60.png]

Level 5, 143 Coronation Drive, Milton QLD 4064 | PO Box 1464, Milton QLD 4064
www.transmax.com.au

This e-mail and attachments may contain confidential or privileged information. 
If you are not the intended recipient,please notify the sender immediately by 
e-mail and then delete this message and attachments.  In this instance, any 
distribution,copying, publication, or use of this information for any purpose 
is prohibited.