Is there a way to set the window size on a
<form action="add.ASP " method="POST">
<input type="hidden" name="AComputer " value="<% =AC %>">
This open in a full window
I have this other way without using the form
<input type="submit" value="ARecord" name="Add"
onClick="window .open('add.asp' ,'add','width=5 00,height=300') ">
This sizes it for me nice, but I can't pass the values I need.
I want to pass AC and have the window size 500 X 300
Is this possible?
<form action="add.ASP " method="POST">
<input type="hidden" name="AComputer " value="<% =AC %>">
This open in a full window
I have this other way without using the form
<input type="submit" value="ARecord" name="Add"
onClick="window .open('add.asp' ,'add','width=5 00,height=300') ">
This sizes it for me nice, but I can't pass the values I need.
I want to pass AC and have the window size 500 X 300
Is this possible?
Comment