Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Double Page Declaration Causes Object Reference Not Set Error #39270

Closed
1 task done
CheetahChrome opened this issue Jan 2, 2022 · 3 comments
Closed
1 task done

Double Page Declaration Causes Object Reference Not Set Error #39270

CheetahChrome opened this issue Jan 2, 2022 · 3 comments
Labels
area-blazor Includes: Blazor, Razor Components bug This issue describes a behavior which is not expected - a bug. Priority:2 Work that is important, but not critical for the release

Comments

@CheetahChrome
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Describe the bug

If a user accidently adds an extra page declaration such as

Razor Page Duplication

@page "/additionalinfo"
@page "/additionalinfo" 
@using BPG.Model

...

A runtime exception is thrown.


Exception on Page

NullReferenceException: Object reference not set to an instance of an object.

StackTrace

BlazorProvingGroundServerApp.Pages.Pages__Host.ExecuteAsync() in _Host.cshtml
-
@namespace BlazorProvingGroundServerApp.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
    Layout = "_Layout";
}
<component type="typeof(App)" render-mode="ServerPrerendered" />

Expected Behavior

(This falls into a user doing a Garbage in, garbage out scenario...) But, this should be caught, if at runtime, then a more robust error describing multiple page declarations found. Or if at compile time, at least as a warning, or better an error.

Steps To Reproduce

  1. Create a component page.
  2. Duplicate the @page line.

Exceptions (if any)

NullReferenceException: Object reference not set to an instance of an object.
Microsoft.AspNetCore.Components.Routing.Router.Refresh(bool isNavigationIntercepted)

.NET Version

.Net 6

Anything else?

No response

@pranavkm pranavkm added area-blazor Includes: Blazor, Razor Components bug This issue describes a behavior which is not expected - a bug. labels Jan 2, 2022
@mkArtakMSFT mkArtakMSFT added this to the .NET 7 Planning milestone Jan 3, 2022
@ghost
Copy link

ghost commented Jan 3, 2022

Thanks for contacting us.

We're moving this issue to the .NET 7 Planning milestone for future evaluation / consideration. We would like to keep this around to collect more feedback, which can help us with prioritizing this work. We will re-evaluate this issue, during our next planning meeting(s).
If we later determine, that the issue has no community involvement, or it's very rare and low-impact issue, we will close it - so that the team can focus on more important and high impact issues.
To learn more about what to expect next and how this issue will be handled you can read more about our triage process here.

@geogreg1
Copy link

geogreg1 commented May 20, 2022

Here is what appears to be a variation or related issue: duplicate page in the RCL causes an an exception to be thrown when router code is modified even though the duplicate page is not being consumed. https://stackoverflow.com/questions/72310618/adding-an-additional-assembly-to-app-razor-router-in-blazor-causes-host-cshtml

@mkArtakMSFT
Copy link
Member

Thanks for contacting us. We believe that having different page attributes works. Having duplicate page attributes is just not a scenario that we support, and we don't plan to spend resources to improve the experience with duplicate page attributes.

@mkArtakMSFT mkArtakMSFT closed this as not planned Won't fix, can't repro, duplicate, stale Aug 5, 2022
@ghost ghost locked as resolved and limited conversation to collaborators Sep 4, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-blazor Includes: Blazor, Razor Components bug This issue describes a behavior which is not expected - a bug. Priority:2 Work that is important, but not critical for the release
Projects
None yet
Development

No branches or pull requests

4 participants