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
553 B

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