Guest User

Untitled

a guest
Apr 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. @page
  2. @model IndexModel
  3. @{
  4. ViewData["Title"] = "Home page";
  5. ImagemNASA imagem = (ImagemNASA)TempData["ImagemNASA"];
  6. }
  7.  
  8. <h2 style="text-align:center;">
  9. Acessando as APIs REST da NASA -
  10. Imagem do Dia @imagem.Data.ToString("dd/MM/yyyy")
  11. </h2>
  12. <h3 style="text-align:center;">@imagem.Titulo</h3>
  13.  
  14. <div style="text-align: center;">
  15. @if (imagem.MediaType == "image")
  16. {
  17. <img src="@imagem.Url" style="height: 60%; width: 60%" />
  18. }
  19. else
  20. {
  21. <iframe id="apod_vid_id" type="text/html" src="@imagem.Url"
  22. width="640" height="385" frameborder="0"></iframe>
  23. }
  24. </div>
  25.  
  26. <p style="margin-top: 15px; margin-left: 20%; width: 60%;">
  27. @imagem.Descricao
  28. </p>
Add Comment
Please, Sign In to add comment