Is there some unique sample to write down code when dealing with a blazer in razor pages? All samples about a blazer I see tosses HTML/razor/CSS and c# code within the identical file, like:
<div class="text">@sometext</div>
<style> .text{ color:black; } </style>
@code{
sometext = "text.."
}
0 Replies