20 lines
445 B
Plaintext
20 lines
445 B
Plaintext
@{
|
|
ViewData["Title"] = "Visualizza immagine";
|
|
var fileName = ViewBag.FileName as string;
|
|
}
|
|
|
|
<h2>@ViewData["Title"]</h2>
|
|
|
|
@if (!string.IsNullOrEmpty(fileName))
|
|
{
|
|
<div>
|
|
<img src="@Url.Action("GetImage", "Rapp_New", new { filePath = fileName })"
|
|
alt="Immagine: @fileName"
|
|
style="max-width:600px; height:auto; border:1px solid #ccc;" />
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<p>Nessuna immagine specificata.</p>
|
|
}
|