Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. @if (Model != null)
  2. {
  3. if (Model.Count() != 0)
  4. {
  5. <div class="">
  6. @foreach (var item in Model)
  7. {
  8. <div class="tiptext">
  9. <b style="margin-left: 0px; font-size: large;color: #1A0DB2;">@item.BusinessName</b>
  10. <h3 style="margin: 5px 0px 5px 0px;color: rgb(0, 145, 0);"> @item.FirstName</h3>
  11. <h3 style="margin: 8px; color:black">@item.BusinessCategory </h3>
  12. <div class="description">
  13. <div class="description_image">
  14. <img src="~/Images/popup_pointer.jpg" />
  15. <div class="POP_UP_outer">
  16. <div class="description_background">
  17. <div class="description_map">
  18. <b>Map</b>
  19.  
  20. </div><hr />
  21. <div class="description_body">
  22. <b>Description </b><h4 class="des">@item.BusinessDescription</h4>
  23. <b>Address2 </b><h4 class="des">@item.Address1</h4>
  24.  
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31.  
  32. }
  33. </div>
  34. }
  35. else
  36. {
  37. <label id="lblErrorMsg" title="Record not fount...!" style="color:red;">Record not found...!</label>
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement