i always tend to forget the code to open the new popup window in javascript but finally here is the code in view
window.open(“SKULookup.aspx”,null,
“height=300,width=362,status=yes,toolbar=no,menubar=no,location=no”);
Explanation:
————–
Window.open(“PagePath”,null,”attributes”)
attributes
———–
height – size
width – size
status – yes/no
toolbar – yes/no
menubar – yes/no
location – yes/no
i think i dont need to remind it again.
Yasir