Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / XSLT

XEML (Entity Markup Language) for Code Generation

Rate me:
Please Sign up or sign in to vote.
3.35/5 (9 votes)
13 Feb 2009GPL39 min read 50K   311   35  
XEML (Entity Markup Language) for Code Generation
using System;
using System.Collections.Generic;
using System.Web.UI;

namespace Test
{
    public partial class _Default : Page
    {
        public void Page_Load(object sender, System.EventArgs e)
        {
            Response.Redirect("~/Home");
        }
    }
}

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 GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Lattice Business Software
United States United States
I am developer of LatticeFramework Studio, fully implemented in C#, a model-driven rapid application development tool.

Comments and Discussions