I am fairly new to asp.net and am not sure which is the most efficient way to write certain code. I am showing two examples, the first which is shorter too write, but when the browser produces the html code which is best? I am combining Asp.Net with Bootstrap BTW. Thank you
code
<div class="container two">
<h1>Crete</h1>
<h4>Beautiful beaches,great accomodation, fabulous food...A great place for a holiday with your family and friends.</h4>
<ul class="thumbnails three">
<li>
<asp:ListView ID="ListView1" runat="server" DataSourceID="EntityDataSource1">
<ItemTemplate>
<asp:HyperLink ID="HyperLink1"
ImageUrl='<%# Eval("Photo") %>'
NavigateUrl='<%# Eval("Link") %>'
ToolTip='<%# Eval("Description") %>'
Target="_blank"
runat="server"></asp:HyperLink>
</ItemTemplate>
</asp:ListView>
</li>
</ul>
<asp:EntityDataSource ID="EntityDataSource1" runat="server"
ConnectionString="name=PictureEntities1"
DefaultContainerName="PictureEntities1" EnableFlattening="False"
EntitySetName="ImageWalls" Select="it.[Link], it.[Description], it.[Photo]">
</asp:EntityDataSource>
</div> <%--End Container Two--%>
/code
code
<li>
<a href="Tavernas.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/1b.jpg" alt="" />
</a>
</li>
<li>
<a href="Tavernas.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/2b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/3b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/4b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/5b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/6b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.googleartproject.com/collection/acropolis-museum/" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/7b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.googleartproject.com/collection/acropolis-museum/" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/8b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.heraklion.gr/en/city/archeological-museum/archeological-museum.html" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/9b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.botanical-park.com/" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/10b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.chania-oldtown-walks.com/" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/11b.jpg" alt="" />
</a>
</li>
<li>
<a href="#" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/12b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Georgioupoli" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/13b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/14b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.cretanvillas.co.uk" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/15b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.cretanvillas.co.uk" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/16b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/17b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://www.samariagorge.eu/" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/18b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Aptera,_Greece" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/19b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/20b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/21b.jpg" alt="" />
</a>
</li>
<li>
<a href="#" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/22b.jpg" alt="" />
</a>
</li>
<li>
<a href="http://limnoupolis.gr" target="_blank" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/23b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/24b.jpg" alt="" />
</a>
</li>
<li>
<a href="Beach.aspx" class="thumbnail">
<img data-src="holder.
js/200x200" src="CubePhotos/25b.jpg" alt="" />
</a>
</li>
/code