Click here to Skip to main content
15,894,646 members
Articles / Web Development / ASP.NET

How to Show Messenger-Like Popups Using AJAX

,
Rate me:
Please Sign up or sign in to vote.
4.65/5 (24 votes)
26 Dec 2008CPOL5 min read 78.5K   1.9K   77  
How to show Messenger-like popups using AJAX.
  • sourcecode.zip
    • AJAX_MessengerLikePopups
      • AJAX_MessengerLikePopups.sln
      • App_Code
      • App_Data
      • App_Themes
        • Default
      • Bin
        • AjaxControlToolkit.dll
        • ar
          • AjaxControlToolkit.resources.dll
        • de
          • AjaxControlToolkit.resources.dll
        • es
          • AjaxControlToolkit.resources.dll
        • fr
          • AjaxControlToolkit.resources.dll
        • he
          • AjaxControlToolkit.resources.dll
        • hi
          • AjaxControlToolkit.resources.dll
        • it
          • AjaxControlToolkit.resources.dll
        • ja
          • AjaxControlToolkit.resources.dll
        • ko
          • AjaxControlToolkit.resources.dll
        • pt
          • AjaxControlToolkit.resources.dll
        • ru
          • AjaxControlToolkit.resources.dll
        • zh-CHS
          • AjaxControlToolkit.resources.dll
        • zh-CHT
          • AjaxControlToolkit.resources.dll
      • Default.aspx
      • Default.aspx.cs
      • InboxService.asmx
      • Web.config
  • 1306.zip
    • AJAX_MessengerLikePopups.sln
    • AJAX_MessengerLikePopups.suo
    • InboxService.cs
    • dbScript.sql
    • bg.gif
    • close_vista.gif
    • style.css
    • AjaxControlToolkit.dll
    • AjaxControlToolkit.dll.refresh
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • Default.aspx
    • Default.aspx.cs
    • InboxService.asmx
    • Web.config
body {
} 
 
#UpdateProgress1
{
	bottom: 0px;
	right: 0px;	
	position:fixed;
	
    width:150px;
    height: 100px;
    border: solid 1px black;
    margin: 0px 0px 0px 20px;
    background-color:white;
    filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=5, OffY=5, Color=#7D7E7E); 
}
#modal .modalTop
{
	width: 142px;
    background-color: Transparent;
    background-image: url(images/bg.gif);
    background-repeat: repeat-x;
    padding: 4px;
    color: #ffffff;
    text-align: right;
}
#modal .modalTitle
{
    padding: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    float:left;
}

#modal .modalTop a, .modalTop a:visited
{
    color: #ffffff;
}

#modal .modalBody
{
    padding: 10px;
    text-align: left;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer Essilor India Pvt Ltd.,
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions