Technologies de développement | ASP.NET | Autres
Ensemble de technologies dans .NET pour la création d’applications web et de services web. Sujets divers qui ne correspondent pas à des catégories spécifiques.
Ce navigateur n’est plus pris en charge.
Effectuez une mise à niveau vers Microsoft Edge pour tirer parti des dernières fonctionnalités, des mises à jour de sécurité et du support technique.
Hello,
I converted my Asp.Net application from .NET 8 to .NET 9.
After converting, I'm getting 404 errors.
My images and parts of my CSS aren't loading.
Home Page .NET8
With .NET9
Console show
I know the cause of the last error. I don't know how to fix the first three.
Here's the HTML for the image in the top right corner:
<figure class="my-0 float-end">
<img height="114px" width="190px" src="/logo/Logo___Pal_w_trans.png">
<figcaption text-center="">
</figcaption>
</figure>
here is the .cshtml
<figure class="my-0 float-end">
<img height="114px" width="190px"
src="~/logo/Logo___Pal_w_trans.png" />
<figcaption text-center>
@if (@User.Identity?.Name != null)
{
<span p-0> @User.Identity?.Name </span>
}
</figcaption>
</figure>