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

ExpandingTable with Design-Time support

Rate me:
Please Sign up or sign in to vote.
3.11/5 (14 votes)
13 Dec 2003CDDL4 min read 99.7K   2.1K   43  
Adding design-time support to your custom ASP.NET controls.
<%@ Register TagPrefix="MANSoftControls" Namespace="MANSoftLib" Assembly="MANSoftLib" %>
<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="WebApplication1.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>WebForm1</title>
		<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
		<meta content="C#" name="CODE_LANGUAGE">
		<meta content="JavaScript" name="vs_defaultClientScript">
		<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
		<LINK href="StyleSheet1.css" rel="stylesheet">
	</HEAD>
	<body MS_POSITIONING="GridLayout" xmlns:MANSoftControls="urn:http://www.teoulmoon.com/mansoft/schemas">
		<form id="Form1" method="post" runat="server">
			<MANSOFTCONTROLS:EXPANDINGDIV id="ExpandingDiv2" runat="server" Width="200px" HeaderAlignment="Center" HeaderText="This the header"
				ExpandedIcon="minus.bmp" CollapsedIcon="plus.bmp" HeaderImage="logobottom.gif">
				<ItemTemplate>
					<font size="4">Content will go here</font>
				</ItemTemplate>
			</MANSOFTCONTROLS:EXPANDINGDIV>
		</form>
	</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)



Comments and Discussions