Click here to Skip to main content
15,896,111 members
Articles / Web Development / ASP.NET

Generate dynamic ASP.NET pages by using XML and XSLT

Rate me:
Please Sign up or sign in to vote.
3.16/5 (55 votes)
15 Oct 20042 min read 523.4K   9K   136  
Generates dynamic forms by transforming XML into XSL file.
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace PubsWeb.XmlTransform
{
	/// <summary>
	/// Summary description for XmlTransformerForm.
	/// </summary>
	public class XmlTransformerForm : System.Web.UI.Page
	{
		protected System.Web.UI.WebControls.Panel PnlForm;
		protected System.Web.UI.WebControls.Button BtnSave;
	
		private void Page_Load(object sender, System.EventArgs e)
		{
			if (!Page.IsPostBack)
			{
				XmlXslTransforer xsl = new XmlXslTransforer();
				xsl.ControlHolder = PnlForm;
				xsl.TransformFields("page_1");
			}
		}

		private void BtnSave_Click(object sender, System.EventArgs e)
		{
			Response.Write (Request.Form["LAST_NAME"]);
		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{    
			this.Load += new System.EventHandler(this.Page_Load);
			this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
		}
		#endregion
	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I am Microsoft Certified in .NET
I have over seven-year experience with client-server application development (full project lifecycle) on Windows platforms.
I've focused on creating middle tier, web application development, GUI development, custom data management software, and database programming.

Comments and Discussions