Click here to Skip to main content
Click here to Skip to main content

Login/SignUp Screen Using AJAX ModalPopupExtender

By , 3 Apr 2008
 

LoginModalPopup

SignupScreen.JPG

Introduction

I want to take this opportunity to introduce a sample application which shows how to use the ModalPopupExtender for logging and signup for any ASP.NET web application. In this quick demonstration, I am going to show you how we can implement a modal dialog box using AJAX in ASP.NET. A modal dialog box (formally called a ModalPopupExtender) is extremely essential in today’s applications as it avoids redirecting to a new page just to login or signup users. A simple example is shown here illustrates how to implement the same.

Background

I was looking around to see samples of how to use the ModalPopupExtender for login and signup for my site...but I could not find any. So finally, I ended up creating this login sample application so it might be useful for everyone.

Using the Code

To start with, let's try to understand the ModalPopupExtender.

ModalPopup Description

The ModalPopupExtender allows a page to display content to the user in a "modal" manner which prevents the user from interacting with the rest of the page. The modal content can be any hierarchy of controls and is displayed above a background that can have a custom style applied to it. When displayed, only the modal content can be interacted with; clicking on the rest of the page does nothing. When the user is done interacting with the modal content, a click of an OK/Cancel control dismisses the modal content and optionally runs a custom script.

ModalPopup Properties

The control is initialized with this code. The display on the modal popup element is set to None to avoid a flicker on render. The italic properties are optional:

<ajaxToolkit:ModalPopupExtender ID="MPE" runat="server"
    TargetControlID="LinkButton1"
    PopupControlID="Panel1"
    BackgroundCssClass="modalBackground" 
    DropShadow="true" 
    OkControlID="OkButton" 
    OnOkScript="onOk()"
    CancelControlID="CancelButton" 
    PopupDragHandleControlID="Panel3" />
  • TargetControlID - The ID of the element that activates the modal popup
  • PopupControlID - The ID of the element to display as a modal popup
  • BackgroundCssClass - The CSS class to apply to the background when the modal popup is displayed
  • DropShadow - Set to True to automatically add a drop-shadow to the modal popup
  • OkControlID - The ID of the element that dismisses the modal popup
  • OnOkScript - Script to run when the modal popup is dismissed with the OkControlID
  • CancelControlID - The ID of the element that cancels the modal popup
  • OnCancelScript - Script to run when the modal popup is dismissed with the CancelControlID
  • PopupDragHandleControlID - The ID of the embedded element that contains the popup header/title which will be used as a drag handle
  • X - The X coordinate of the top/left corner of the modal popup (the popup will be centered horizontally if not specified)
  • Y - The Y coordinate of the top/left corner of the modal popup (the popup will be centered vertically if not specified)
  • RepositionMode - The setting that determines if the popup needs to be repositioned when the window is resized or scrolled

This shows how you define the ModalPopupExtender for login and signup screen buttons:

<modalpopupextender id="ModalPopupExtenderLogin" 
  runat="server" targetcontrolid="Loginlnk" 
  popupcontrolid="LoginPanel" backgroundcssclass="modalBackground" 
  dropshadow="true" okcontrolid="LoginBtn" önokscript="ok()" 
  cancelcontrolid="CancelBtn" />

<modalpopupextender id="ModalPopupExtenderSignup" runat="server" 
  targetcontrolid="Signuplnk" popupcontrolid="SignupPanel" 
  backgroundcssclass="modalBackground" dropshadow="true" 
  okcontrolid="JoinBtn" önokscript="okJoin()" 
  cancelcontrolid="CancelBtn2" />

Installation

Download the AJAX Toolkit Version 1.0.20229 from this link: http://www.codeplex.com/AtlasControlToolkit/Release/ProjectReleases.aspx?ReleaseId=11121.

Also, you need ASP.NET AJAX Extensions 1.0 for ASP.NET 2.0...you can get it from this link: http://www.asp.net/ajax/downloads/.

Once you have all those, open the sample project in VS2005, and it should work.

History

  • April 3rd 2008. Initial version published.

License

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

About the Author

Pramod S Kumar
Software Developer (Senior) NYCEDC
United States United States
Member
Pramod has been a software developer for more than 6 years now mostly working on Ajax ASP.NET web applications.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionwhich tag prifix will use in loginmodalpopup extender?membertanu rathi18 Feb '13 - 21:27 
GeneralMy vote of 5membercsharpbd10 Nov '12 - 11:40 
Thanks for Nice article!
Questionhow to add a login modal popup on click of a image button and then redirecting it to a new page consisting of menus..membercheck6.manoZr29 Aug '12 - 20:58 
GeneralMy vote of 5membermanoj kumar choubey16 Feb '12 - 0:35 
GeneralMy vote of 5membergitukurikesu4 Nov '11 - 21:27 
QuestionVB.Net ,Database connectivity as not been workingmemberjaya;akshmi4 Aug '11 - 20:42 
GeneralModal PopUp Extender when Radio button listmemberkarthikvadugan25 Oct '10 - 2:02 
GeneralMy vote of 1memberParimal@Cybage12 Oct '10 - 19:40 
Generalshow validation on pop upmemberniravsahayata19 Apr '10 - 21:09 
GeneralMy vote of 1membersuresh suthar25 Dec '09 - 1:05 
Generalpopup does not work with master pagemembersantoshvreddy10 Dec '09 - 1:15 
General[My vote of 1] I just hate it when you try to download a project and its not compiledmembertbenami16 Oct '09 - 20:51 
GeneralMy vote of 2memberAJFK7 Jul '09 - 7:13 
GeneralModal in Web Content PagememberMember 370337722 Mar '09 - 22:34 
GeneralKeeping modal dialog until server side validation is complete.memberRaghu Karupakala23 Jan '09 - 21:22 
Questionhow can i use ajax modal popup on ascx?memberMember 415722921 Dec '08 - 2:46 
AnswerRe: how can i use ajax modal popup on ascx?memberPramod S Kumar13 Jan '09 - 5:56 
GeneralRe: how can i use ajax modal popup on ascx?membersandeep k27 Feb '09 - 1:08 
QuestionHow can i make this work on Master pagememberT.Ashraf20 Dec '08 - 4:39 
AnswerRe: How can i make this work on Master pagememberPramod S Kumar13 Jan '09 - 5:58 
Generalclearing the modalpoupmembervenudreamsb4u27 Oct '08 - 6:29 
QuestionHow to get rid from infinte scroolbar in page behind of modalpopup when the screen resolution is changed?members a n t o s h25 Sep '08 - 21:27 
GeneralWorking Example of Modal Dialogmembermayurmv4 Sep '08 - 5:06 
GeneralModalPopup Extender does not work correctly with Opera BrowsermemberLeMoustique28 Jul '08 - 12:34 
QuestionLogout via Modal popupmembersaquibsa2 Jun '08 - 22:24 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 3 Apr 2008
Article Copyright 2008 by Pramod S Kumar
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid