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

Programatically include an ASP.NET UserControl in a Web Page

Rate me:
Please Sign up or sign in to vote.
4.71/5 (14 votes)
9 Mar 20024 min read 277.3K   2.1K   65  
A tutorial on how to programatically include an ASP.NET UserControl in a web page.
// Disclaimer and Copyright Information
// WebLogManager.cs : 
//
// All rights reserved.
//
// Written by Pardesi Services, LLC
// Version 1.0
//
// Distribute freely, except: don't remove our name from the source or
// documentation (don't take credit for my work), mark your changes (don't
// get me blamed for your possible bugs), don't alter or remove this
// notice.
// No warrantee of any kind, express or implied, is included with this
// software; use at your own risk, responsibility for damages (if any) to
// anyone resulting from the use of this software rests entirely with the
// user.
//
// Send bug reports, bug fixes, enhancements, requests, flames, etc. to
// softomarix@pardesiservices.com
///////////////////////////////////////////////////////////////////////////////
//

using System;

namespace ASPNet_App
{
	/// <summary>
	/// 
	/// </summary>
	public class ViewStateUtil
	{
		public ViewStateUtil()
		{
			// 
			// TODO: Add constructor logic here
			//
		}
	}
}

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
To learn more about us, Please visit us at http://www.netomatix.com

Comments and Discussions