2
Answers

Popup window on users desktop

Hi to all, I am posting my first question here please help to get out of my problem.
I am developing a web application regarding work flow maintenance.I want to pop up a message to the employee's that a new work is assigned for u.The popup should be opened from the user desktop like yahoo messenger.

Please reply me..


Thanks,
$.PandiaRajan
Answers (2)
0
Lakhan Pal
NA 78 27.4k 15y
Hi-

I think you need to create a window service.. add a timer in the service Schedule it to run after evrey 15 min or any required time interval...

after particular time it will call a function that will check for new alert from DB.. if there is any then take required action..


Accepted
0
Niradhip Chakraborty
NA 6.5k 527k 15y

You can use javascript window.open() to open popup kind of window.
 

strUrl="Contents/LayoutPanel.aspx ";

windowRef = window.open(strUrl, 'popup', 'dependent=YES,dialog=no,resizable=NO,scrollbars=Yes,location=0,left=0,top=0,status=0,menubar=0,toolbar=0,width=1000px,height=700px,modal=yes');