ASP.NET Source Code Viewer Font Size:
Web Form Shop.aspx, Shop.aspx.vb

Shop.aspx

<%@ Page Language="VB" MasterPageFile="~/site.master" AutoEventWireup="false" codefile="Shop.aspx.vb" Inherits="Shop" title="Club Shop" %>

<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" Runat="server">

    <asp:sqldatasource id="SqlDataSource1" runat="server"
        selectcommand="SELECT ProductID, Name, Description, Price, PictureURL FROM Products ORDER BY Name"
        connectionstring="<%$ ConnectionStrings:WroxUnited %>">
    </asp:sqldatasource>
    <asp:datalist id="DataList1" runat="server" datakeyfield="ProductID" datasourceid="SqlDataSource1"
        repeatcolumns="4">
        <ItemTemplate>
            <asp:ImageButton id=ImageButton1 runat="server" ImageUrl='<%# Eval("PictureURL", "ProductImages/thumb_{0}") %>'
                AlternateText='<%# Eval("Description") %>' ToolTip="Click for more details"
                PostBackUrl='<%# Eval("ProductID", "ShopItem.aspx?ProductID={0}") %>'></asp:ImageButton>
            <asp:Label Text='<%# Eval("Name") %>' runat="server" id="NameLabel" style="font-weight:bold"/><br />
            <asp:Label Text='<%# Eval("Price", "{0:c}") %>' runat="server" id="PriceLabel"/><br />
        </ItemTemplate>
    </asp:datalist>
</asp:Content>