You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
587 B

<%@ Page Language="VB" %>
<!-- Register Flyout component -->
<%@ Register TagPrefix="obout" Namespace="OboutInc.Flyout2" Assembly="obout_Flyout2_NET"%>
<script runat="server" language="VB">
Dim oFlyout As Flyout
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
oFlyout.AttachTo = "myImage[myRect]"
Dim img As New Image
img.ImageUrl = "images/calendar.jpg"
oFlyout.Controls.Add(img)
End Sub
Protected Sub Page_Init(ByVal o As Object, ByVal e As EventArgs)