Please i need help in converting the image url property of an image control written in C# to its equivalent in vb.net. I am following a tutorial which i got from this site on how to display images on a gridview using base64 this is the url of the tutorial. http://dotnetawesome.blogspot.in/2013/10/how-to-insert-image-into-database-and.html. The tutorial was written in C# please i need the equivalent of this in vb.net
<ItemTemplate>
<asp:Image ID="Image1" runat="server" Width="100px" ImageUrl='<%#Eval("Picture").ToString() == ""?"": GetImageString64((byte[])Eval("Picture")) %>' />
</ItemTemplate>