Click here to Skip to main content
15,879,474 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do I get a simple modal dialog to work in a Visual Studio 2022 Razor Server Application?

To get started this is what I have done:
•	Open visual Studio
•	Create new Project
•	Select Blazer Server App Project Template
•	Modify the Counter.Razor file with the following code.

The buttons shows up, but the dialog does not appear.  I think this might be related to the project needing bootstrap.  Any help would be greatly appreciated.

What I have tried:

This is the code that should produce a dialog (Counter.razor):

<@page "/counter"
<PageTitle>Counter</PageTitle>

<h1>I want this button to start a modal dialog</h1>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
    Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true"</span>
                </button>
            </div>
            <div class="modal-body">
                ...
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
                <button type="button" class="btn btn-primary">Save changes</button>
            </div>
        </div>
    </div>
</div>



@code {

}
Posted
Comments
Richard Deeming 7-Mar-23 5:27am    
Which version of Bootstrap are you referencing? For example, v5 changed the attributes from data-toggle and data-target to data-bs-toggle and data-bs-target:
Modal · Bootstrap v5.3[^]

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900