Is it possible to disable the minimized icon of a popup
window using window.open. Not using iframe concept?

Answers were Sorted based on User's Feedback



Is it possible to disable the minimized icon of a popup window using window.open. Not using iframe..

Answer / spice

function showWin()
{

var newlookup = window.showModalDialog("http://www.yahoo.com",
"", "","status=0;help=0;dialogHeight=" + 400 + ";dialogWidth=" +600 )


}

Is This Answer Correct ?    1 Yes 3 No

Is it possible to disable the minimized icon of a popup window using window.open. Not using iframe..

Answer / vinu

not possible

Is This Answer Correct ?    3 Yes 7 No

Is it possible to disable the minimized icon of a popup window using window.open. Not using iframe..

Answer / vaibhav telange

Yes,It possible to disable the minimize icon of a popup
window using following javascript....

window.open(url,
name,
'width=' + w + ', height=' + h + ', ' +
'left=' + wleft + ', top=' + wtop + ', ' +
' +
'minimize=no');

Is This Answer Correct ?    1 Yes 26 No

Post New Answer

More ASP.NET Interview Questions

Differentiate between client-side and server-side validations in web pages.

0 Answers  


What are the ways of preserving data on a Web Form in ASP.NET?

0 Answers  


What is asp.net caching?

0 Answers  


What definition correctly defines a label server control with the name set to lblHoop? a) <asp:Label name=?lblHoop? runat=?server? /> b) <Label id=?lblHoop? runat=?server? /> c) <asp:Label id=?lblHoop? runat=?server? /> d) <server label name=?lblHoop? runat=?asp? />

3 Answers   Syntax Softtech,


Is web config mandatory?

0 Answers  






If we add a textbox and give the required field validator,and i add two radio buttons 1 is yes another one is No.And i add another one server control button ,if i click the button ,if the radio button Yes is checked the validation control is fired ,if no the validation control is not fired.So what you used to solve this problem.

6 Answers   CTS,


How does u get record no from 5 to 15 from a dataset of 100 records?

0 Answers  


What is X-Path?

2 Answers   Sherston,


How can exception be handled with out the use of try catch?

0 Answers  


What is the use of express session?

0 Answers  


Which method do you invoke on the DataAdapter control to load your generated dataset with data?

2 Answers   Siebel Systems,


What is round trip in asp.net?

0 Answers  


Categories