WebDings Web Graphics

Brief list of useful font glyphs that can be used in grid views and what-nots (Caveat: Doesn't work in FireFox 2):
GlyphText representation
3 (previous)3
4 (play / next)4
7 (rewind)7
8 (fast forward)8
9 (previous track / go to beginning)9
: (next track / go to end):
A more compatible, but less functional (see post date) option is Unicode; see this page I ended up using the ASP.NET browser ID functionality, separating my GridView's Pager implementation for the two browsers like so: <ie:PagerSettings   Mode="NextPreviousFirstLast"   FirstPageText="9" LastPageText=":" NextPageText="4" PreviousPageText="3"   Position="Bottom" /> <ie:PagerStyle   ...   Font-Bold="True"   Font-Names="webdings"   Font-Size="Larger"   HorizontalAlign="Right" /> <mozilla:PagerSettings   Mode="NextPreviousFirstLast"   FirstPageText="&lArr;" LastPageText="&rArr;" NextPageText="&rarr;" PreviousPageText="&larr;"   Position="Bottom" /> <mozilla:PagerStyle   ...   Font-Bold="True"   Font-Size="X-Large"   HorizontalAlign="Right" />

Comments

Popular posts from this blog

Auto Mapper and Record Types - will they blend?

Unit testing your Azure functions - part 2: Queues and Blobs

Testing WCF services with user credentials and binary endpoints