Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. @using Skybrud.Umbraco.Module.Extensions.Logging
  2. @using Lecoati.LeBlender.Extension.Models
  3. @inherits UmbracoViewPage<LeBlenderModel>
  4. @if (Model.Items.Any())
  5. {
  6. try
  7. {
  8. LeBlenderValue value = Model.Items.FirstOrDefault();
  9.  
  10. if (value != null)
  11. {
  12. // Insert code and markup here
  13. }
  14. }
  15. catch (Exception ex)
  16. {
  17. ex.LogViewError(Request.Url.ToString());
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement