You must Sign In to post a response.
  • Category: HTML

    Need to show popup even if web application is minimized.

    Hi all,


    My application is classic asp.
    I need to show message even if the web application is minimized.
    ie show notification messages like in outlook mail
    We will get notification on bottom right side even if the mail is minimized.
    Anyone know solution for this?
  • #761408
    Hi elv,

    may be these are the suitable sites will answer your question.

    please refer these below links

    http://www.codeproject.com/Articles/37451/Display-Progress-and-Overlay-Icons-for-Multiple-Vi

    http://www.codeproject.com/Articles/117115/Using-Overlay-Icon-API-to-Make-Client-Notification

    Rayala HariKishore

    try..try..try...you achieved it.
    http://rayalaharikishore.wordpress.com/

  • #761445
    Creating popup in div is the specific for your page. We can not run that popup out side the window.

    you can try window.open using javascript

    <script type="text/javascript">
    function openPopupWindow() {
    win = window.open('yourpage.aspx', 'popup');
    }
    </script>

    By Nathan
    Direction is important than speed

  • #761455
    Hello Elv,

    Refer the below links :

    http://stackoverflow.com/questions/7855568/get-users-attention-when-browser-is-minimized-cross-browser-desktop-notificati

    https://github.com/alexgibson/notify.js

    https://github.com/ttsvetko/HTML5-Desktop-Notifications

    http://www.paulund.co.uk/html5-notifications

    Hope this will help you.


    Hello Nathan,

    He means to say notification window like outlook when any mail is received.

    Regards,
    Nirav Lalan
    DNS Gold Member
    "If you can dream it, you can do it."


  • Sign In to post your comments