I am having following query on Windows Popup close button :
Programming environment : ASP .NET , Browser : IE

1) Is is possible to remove title Bar , Resize buttons and close[x] button at right top from pop-up browser window ?

2) If possible , how to do it ?

Please let me know if you have any solution for above problem.

With thanks ,
-Sachin

You can do that by javascript window.open() function
window.open('Temp.aspx','mywin','left=20,top=20,width=50,height=50,toolbar=0,resizable=0');
If u want to but an action in close button
use the following code

<script type="text/javascript">
			function rr()
			{
			if (window.event.clientX < 0 && window.event.clientY < 0)
			{
                                                  //put here your action
	
			}

			}
</script>
<body onunload="rr()" >
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.