<%@ Register TagPrefix="mono" Namespace="MonoSoftware.Web.DynamicPopUp" Assembly="MonoSoftware.Web.DynamicPopUp" %>
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="DynaPopSimple.aspx.vb" Inherits="VBNetMonoWCLTest.DynaPopSimple"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
  <head>
    <title>Dynamic PopUp Simple Example</title>
    <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
    <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
    <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">
      <div>
      This is a very simple example showing the way DynamicPopUp operates.
      </div>
      <hr>
      <div>
        Point your mouse over the link ...<br>
        <asp:HyperLink Runat="server" id="HyperLink1" NavigateUrl="http://www.mono-software.com">MonoSoftware ASP.NET Web Controls, NOW!</asp:HyperLink>
        <br>The above hyperlink is set a PopTarget for the DynamicPopUp. The user control specified in the "UserControlPath" property gets displayed when a user points the mouse over the hyperlink.<br>
        The content of the user control is "static". The look of the popup is defined directly on the DynamicPopUp control.
      </div>
      <mono:dynamicpopup id="DynamicPopUp1" runat="server" ForeColor="OrangeRed" BackColor="PaleGoldenrod"
        BorderStyle="Dotted" BorderColor="DeepSkyBlue" BorderWidth="1px" Font-Names="verdana,arial" Font-Size="11px"
        Width="296px">
        <mono:PopTarget UserControlPath="~/ucSimple.ascx" Target="HyperLink1"></mono:PopTarget>
      </mono:dynamicpopup>
    </form>
  </body>
</html>