Click here to Skip to main content
15,889,096 members
Articles / Web Development / HTML

Lean and Mean Blogging Revisited

Rate me:
Please Sign up or sign in to vote.
4.75/5 (24 votes)
4 Jan 2008CDDL9 min read 95.2K   629   62  
An alternative approach to blogging engines
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="blog.aspx.cs" Inherits="blog" Title="Mustafa's Blogs" %>

<%@ Register TagName="blogEntries" Src="~/controls/blogEntries.ascx" TagPrefix="uc" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>ABE: Another Blogging Engine</title>
    <link type="text/css" rel="stylesheet" href="css/default.css" />
</head>
<body>
    <div>
        <uc:blogEntries runat="server" ID="blogEntries" EnableViewState="false" />
    </div>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
EMC
Canada Canada
A Systems Engineer, a Software Engineer, a Consultant and an Entrepreneur as well as a Barbeque aficionado.

Currently, working as a Senior Systems Engineer at Intergraph, where I help enterprises move the cloud.

Married and the proud father of two boys, my family is the center of my happy universe Smile | :)

Comments and Discussions