I am currently working on a webpage using asp.net and have written a script to open a modal window. The script works flawlessly overall, but I am facing an issue with the resizable property not functioning properly. Once the window is opened, I am unable to resize it.
Dim script as String = "window.showModalDialog('" + page + "','','unadorned:yes; dialogWidth:330px; dialogHeight:210px; center:yes ; resizable:no; scrollbars:no; toolbar:no; copyhistory:no; menubar:no; status:no ; addressbar:no');"
ScriptManager.RegisterStartupScript(Me, GetType(Page), "alertaerror", script, True)
I require assistance regarding this specific property. Is there something wrong in the way I am implementing it?