Click here to Skip to main content
15,903,175 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPop up window closes when clicked outside the popup window Pin
jmk_cooljack20-Sep-09 20:47
jmk_cooljack20-Sep-09 20:47 
Answer[Message Deleted] Pin
Blikkies20-Sep-09 21:31
professionalBlikkies20-Sep-09 21:31 
GeneralRe: Pop up window closes when clicked outside the popup window Pin
jmk_cooljack20-Sep-09 21:47
jmk_cooljack20-Sep-09 21:47 
GeneralRe: Pop up window closes when clicked outside the popup window Pin
Abhishek Sur20-Sep-09 22:23
professionalAbhishek Sur20-Sep-09 22:23 
GeneralRe: Pop up window closes when clicked outside the popup window Pin
jmk_cooljack20-Sep-09 22:56
jmk_cooljack20-Sep-09 22:56 
GeneralRe: Pop up window closes when clicked outside the popup window Pin
Abhishek Sur21-Sep-09 8:49
professionalAbhishek Sur21-Sep-09 8:49 
GeneralRe: Pop up window closes when clicked outside the popup window Pin
jmk_cooljack21-Sep-09 19:23
jmk_cooljack21-Sep-09 19:23 
AnswerRe: Pop up window closes when clicked outside the popup window Pin
delhislicker10-Nov-09 3:14
delhislicker10-Nov-09 3:14 
use the following script where div1 is the id of
popup and its height=100px n width =200px



<script type="text/javascript">
function s(e)
{
var x=event.clientX;
var y=event.clientY;
if((x<200||x>400)||(y<200||y>300))

document.getElementById("div1").style.display="none";
}
document.onmousedown=s;

function show()
{
document.getElementById("div1").style.display="block";
}
</script>


regards
Ankur Sharma
ankursharma.niit@gmail.com

QuestionGeneral Query Pin
softwareengineer120-Sep-09 20:21
softwareengineer120-Sep-09 20:21 
AnswerRe: General Query Pin
Christian Graus20-Sep-09 20:33
protectorChristian Graus20-Sep-09 20:33 
GeneralRe: General Query Pin
softwareengineer120-Sep-09 20:50
softwareengineer120-Sep-09 20:50 
QuestionFTP problem while uploading file. Pin
User 625546420-Sep-09 19:48
User 625546420-Sep-09 19:48 
AnswerRe: FTP problem while uploading file. Pin
Abhijit Jana20-Sep-09 20:13
professionalAbhijit Jana20-Sep-09 20:13 
GeneralRe: FTP problem while uploading file. Pin
yesu prakash21-Sep-09 17:49
yesu prakash21-Sep-09 17:49 
QuestionWebservice multiple calls Pin
Matt Cavanagh20-Sep-09 13:08
Matt Cavanagh20-Sep-09 13:08 
AnswerRe: Webservice multiple calls Pin
Christian Graus20-Sep-09 13:59
protectorChristian Graus20-Sep-09 13:59 
GeneralRe: Webservice multiple calls Pin
Matt Cavanagh20-Sep-09 20:55
Matt Cavanagh20-Sep-09 20:55 
QuestionImpersonation throwing exception Pin
vishwjeet20-Sep-09 6:19
vishwjeet20-Sep-09 6:19 
AnswerRe: Impersonation throwing exception Pin
Abhishek Sur20-Sep-09 7:59
professionalAbhishek Sur20-Sep-09 7:59 
GeneralRe: Impersonation throwing exception Pin
vishwjeet20-Sep-09 8:23
vishwjeet20-Sep-09 8:23 
GeneralRe: Impersonation throwing exception Pin
Abhishek Sur20-Sep-09 10:25
professionalAbhishek Sur20-Sep-09 10:25 
GeneralRe: Impersonation throwing exception Pin
vishwjeet20-Sep-09 11:33
vishwjeet20-Sep-09 11:33 
GeneralCookie is not working in IIS 6.0 Pin
prasannadotnet20-Sep-09 6:06
prasannadotnet20-Sep-09 6:06 
QuestionHow to detect the user IP? Pin
Seraph_summer20-Sep-09 4:28
Seraph_summer20-Sep-09 4:28 
AnswerRe: How to detect the user IP? Pin
Parwej Ahamad20-Sep-09 4:40
professionalParwej Ahamad20-Sep-09 4:40 

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

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