Click here to Skip to main content
15,895,746 members
Articles / Programming Languages / C#

Hello UIPAB

Rate me:
Please Sign up or sign in to vote.
4.76/5 (27 votes)
24 Mar 2005CPOL14 min read 118.2K   230   84  
A primer to Microsoft's User Interface Process Application Block.
<%@ Page language="c#" Codebehind="View3.aspx.cs" AutoEventWireup="false" Inherits="SimpleWebUIPAB.View3" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>View3</title>
		<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
		<meta name="CODE_LANGUAGE" Content="C#">
		<meta name="vs_defaultClientScript" content="JavaScript">
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
	</HEAD>
	<body MS_POSITIONING="GridLayout">
		<form id="Form1" method="post" runat="server">
			<asp:Label id="Label1" style="Z-INDEX: 101; LEFT: 16px; POSITION: absolute; TOP: 56px" runat="server">Hello, </asp:Label>
			<asp:Label id="lblName" style="Z-INDEX: 102; LEFT: 64px; POSITION: absolute; TOP: 56px" runat="server"
				Width="200px">Label</asp:Label>
			<asp:Label id="Label2" style="Z-INDEX: 103; LEFT: 16px; POSITION: absolute; TOP: 16px" runat="server"
				ForeColor="Maroon">Display the value passed by the UIPAB's State Persistence Provider.</asp:Label>
			<asp:Button id="Button1" style="Z-INDEX: 104; LEFT: 16px; POSITION: absolute; TOP: 112px" runat="server"
				Text="Previous"></asp:Button>
			<asp:Button id="Button3" style="Z-INDEX: 106; LEFT: 120px; POSITION: absolute; TOP: 112px" runat="server"
				Text="Restart"></asp:Button>
			<INPUT type="button" value=" Exit " onclick="javascript:window.close()" style="Z-INDEX: 107; LEFT: 208px; POSITION: absolute; TOP: 112px">
		</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 Code Project Open License (CPOL)


Written By
Architect
United States United States
Roy is a software developer who digs all aspects of software development, from design and architecture to implementation.

Comments and Discussions