Click here to Skip to main content
Licence CPOL
First Posted 2 Feb 2007
Views 61,325
Downloads 1,128
Bookmarked 100 times

ASP.Net User Controls as Static or Movable PopUps

By | 2 Feb 2007 | Article
Use form controls as static informational popups or movable control windows.
Prize winner in Competition "Best ASP.NET article of Jan 2007"

Sample image Sample image


** Online Demo!! **

Introduction

This is a very simple example of how to make .ascx user controls into popup windows on a web app. Almost any user control can be modified to work as a popup, and there is very little code needed to create the effect. Most of the work is done in the javascript functions included in the source.

Pop Example Controls

The demo project uses two types of controls as popups. The first type is simply an informational window that can be used as a very effective help display. The text on these static popup examples is loaded from XML, so all modifications to the text can be done in one place, and can be very easily modified programmatically. The second type of example is a control developed to collapse items from a list into groups. The original item list is shown on the main page, and the Go button will display the collapse popup, which is movable.

Coding Necessary for Creating PopUps

There is very little coding necessary to make a control into a popup. The only change to the control is simply defining the control as hidden with absolute positioning. The click event for the collapse control should also not bubble, as it will be handled in the main page.

<div class="collapsePop" id="CollapseContainer" 
     style="VISIBILITY: hidden; POSITION: absolute" 
     onclick="event.cancelBubble = true;" runat="server"></div> 

When the parent page of the popup control is loaded, the control must be created and hooked up to various events. The control is then added to the page in a defined area.

cc = (CollapseControl)LoadControl("CollapseControl.ascx");
cc.ID = this.ID + "_cc_1";
cc.ColDoneClick += new EventHandler(cc_ColDoneClick);
Control PopArea = Page.FindControl("PopArea"); 
Control cc1 = PopArea.FindControl(cc.ClientID); 
if (cc1 != null) PopArea.Controls.Remove(cc1);
PopArea.Controls.Add(cc); 

With the control created and loaded on the page, only the button click event needs to be assigned to make this control a popup.

btnPop01.Attributes.Add("onclick", "return !showPop('" + 
        cc.ClientID + "_CollapseContainer', '',event,false,-10,-30,true," +
        sbCtrlIDs+ ",false);"); 

The client-side javascript function showPop will take care of displaying and hiding the popup, and has various parameter settings to make the popup static or movable. These function parameters are defined as follows:

pID : The ID of the Popup Control.
selID : A Selection control ID that obscures the popup (Only necessary for IE 6 bug fix).
eventObj : The event that fires the function.
bTimer : TRUE if popup is hidden on mouseout, otherwise FALSE.
OffX : X Offset of popup display from event target.
OffY : Y Offset of popup display from event target.
bVAlign : TRUE if popup should be aligned vertically, otherwise FALSE.
ctrlIDs : Array of selection controls on page that may obscure the popup. (IE bug fix only).
bAnimate : TRUE if popup should be displayed with rollout, FALSE to display normal.

Final Notes

These examples are very basic controls to show how easy it is to create a popup effect on a webpage. As any control can effectively be used as a popup, there is no limit to the possibilities for creating different and efficient effects. Hopefully you will find these useful.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Bob Carboni

Web Developer

United States United States

Member

Software architect and developer with over 20 years of experience, specializing in GUI designs and intranet systems in MFC/C++ and ASP.Net using C#.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 2 Pinmemberdevendra.singhin7:16 21 Apr '11  
GeneralBackground Color Pinmemberandreslarrimbe3:06 15 Feb '11  
QuestionHow do I open a popup inside a popup? PinmemberCelefin3:11 6 Mar '09  
GeneralToubles with Scrollbar Pinmemberjasanguineti5:20 14 Dec '08  
GeneralgetObject is not defined PinmemberOmidH18:19 19 Jun '07  
GeneralRe: getObject is not defined PinmemberBob Carboni3:18 20 Jun '07  
GeneralNice - I like it Pinmemberstixoffire16:38 27 Mar '07  
GeneralRe: Nice - I like it PinmemberBob Carboni14:59 28 Mar '07  
GeneralAccessibility Pinmembersmartinz12:07 6 Feb '07  
GeneralRe: Accessibility PinmemberBob Carboni12:06 7 Feb '07  
GeneralRe: Accessibility Pinmembersmartinz8:47 8 Feb '07  
QuestionPopup Form PinmemberMichael P. Moore5:41 6 Feb '07  
AnswerRe: Popup Form PinmemberBob Carboni6:02 6 Feb '07  
GeneralRe: Popup Form PinmemberMichael P. Moore6:19 6 Feb '07  
GeneralNice article PinmemberClickok11:50 3 Feb '07  
GeneralRe: Nice article PinmemberBob Carboni13:30 3 Feb '07  
Generalcovered by list box in ie6 Pinmemberaruan16:51 2 Feb '07  
GeneralRe: covered by list box in ie6 PinmemberGhazi Al Wadi, PMP2:40 3 Feb '07  
GeneralRe: covered by list box in ie6 PinmemberBob Carboni5:24 3 Feb '07  
GeneralRe: covered by list box in ie6 PinmemberBob Carboni5:28 3 Feb '07  
GeneralRe: covered by list box in ie6 Pinmemberstixoffire7:22 28 Mar '07  
GeneralRe: covered by list box in ie6 PinmemberBob Carboni15:02 28 Mar '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 2 Feb 2007
Article Copyright 2007 by Bob Carboni
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid