ASP.NET About Box (Page)

I had a request for an ASP.NET version of my windows forms About Box. This is a good idea that I've considered in the past, so I took the time to convert it today:

ASP.NET about form screenshot

Clicking details will provide a dump of all loaded assemblies in summary form, with links to the full list of the attributes for each assembly-- exactly the same information the windows forms version provides.

The main page is a HTML template; you can make it look however you want by modifying the markup-- no recompilation required. To display entry assembly attributes, use the named properties defined in the About class, eg Version <%=Version%>, or call EntryAssemblyAttrib(key) with any arbitrary attribute key you want to display.

Oh, and populate your damn assembly attributes, because that's where all this information is automatically derived from:

<Assembly: AssemblyTitle("About Page Demo")>
<Assembly: AssemblyDescription("A website demonstrating the About page")>
<Assembly: AssemblyCompany("Atwood Heavy Industries")>
<Assembly: AssemblyProduct("Demos")>
<Assembly: AssemblyCopyright(" 2005, Atwood Heavy Industries")>
<Assembly: AssemblyTrademark("All Rights Reserved")>

I don't think this is enough to justify another CodeProject article, so I'll host it here and link it from the comments in the original article.

Download the ASP.NET About Page VS.NET 2003 project (12kb)

Read more

Stay Gold, America

We are at an unprecedented point in American history, and I'm concerned we may lose sight of the American Dream.

By Jeff Atwood · · Comments

The Great Filter Comes For Us All

With a 13 billion year head start on evolution, why haven't any other forms of life in the universe contacted us by now? (Arrival is a fantastic movie. Watch it, but don't stop there - read the Story of Your Life novella it was based on

By Jeff Atwood · · Comments

I Fight For The Users

If you haven't been able to keep up with my blistering pace of one blog post per year, I don't blame you. There's a lot going on right now. It's a busy time. But let's pause and take a moment

By Jeff Atwood · · Comments

The 2030 Self-Driving Car Bet

It's my honor to announce that John Carmack and I have initiated a friendly bet of $10,000* to the 501(c)(3) charity of the winner’s choice: By January 1st, 2030, completely autonomous self-driving cars meeting SAE J3016 level 5 will be commercially available for passenger

By Jeff Atwood · · Comments