In your case it would be something like,
var mywin = window.open('proUP.asp', 'popup', "width=500,height=200,tool
For more refnc :http://www.devguru.com/Te
Main Topics
Browse All TopicsHi All,
I have a quick problem. I have figured out how to open the window by using the load instead of sendAndLoad. However, whne the window open th epage in the browser, I want the browser to be resized and I dont want the toolbar, locationbar, scrollbar or any of the other bars at the top. Does anyone know how I would accomplish this. Thanks for any help.
Justice
URL2 = "http://localhost/theParty
//CHECK LOGIN/////////////////////
if (_root.logged.text ==""){
status.text = "YOU MUST BE LOGGED IN TO UPLOAD PHOTOS";
} else {
status.text = "";
}
//CHECK LOGIN/////////////////////
iUE.onPress = function(){
getURL("mailto:atlantatomb
}
iUF.onPress = function() {
if (_root.logged.text ==""){
status.text = "YOU MUST BE LOGGED IN TO UPLOAD PHOTOS";
} else {
//loadVars instances
formData = new LoadVars();
formData.ID = _root.logged.text;
formData.send(URL2, "_blank", "POST");
}
}
stop();
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
In your case it would be something like,
var mywin = window.open('proUP.asp', 'popup', "width=500,height=200,tool
For more refnc :http://www.devguru.com/Te
I think you need to use the getURl function.Check the below links and see if it helps you
http://www.experts-exchang
http://www.kirupa.com/deve
To open a page in asp with no toolbars,
From the page from where you are opening the 'proUP.asp page you call a javscript function and thats it
<script language ="javascript">
function OpenNewWindow()
{
var win = window.open('proUP.asp', 'popup',"toolbar=no,locati
);
</script>
<a href = "#" onclick = "OpenNewWindow();return False;">Open Page</a>
or
in the submit of the form (page 1) you could call the function.
This is my page. Can you help me make sense of this? I still need to pass the value of inID to the next page.
Justice
Code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html
<%
Dim inID
'REQUEST VARIABLE VALUES
'inID = CInt(Request.Form("ID"))
'comment the following after testing the page
inID = 47
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="Extras/theParty.css"
<style type="text/css">
<!--@import url("../../Extras/afAdmin.
</style>
</head>
<BODY bgcolor="#CC9900" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<form name="form1" method="post" action="proUP-1.asp" ENCTYPE="multipart/form-da
<input type="hidden" value="<%=inID%>" name="inID">
<table width="100%" border="0">
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td width="47%" class="whiteCopy">UPLOAD FILES
</td>
<td width="53%"><input name="FILE1" type="FILE" size="50"></td>
</tr>
<tr>
<td> </td>
<td><input name="Upload" type="submit" value="Upload"></td>
</tr>
</table>
</form>
</BODY>
</html>
Just access the hidden field the same way in the next page.I can see from the page that you've a hidden field
Then in the second page you just need the same syntax.
<input type="hidden" name="inID" value"<%=inID%>">
then when this form is submitted you can retrieve this information on your next page by doing -
Dim Field1
Field1 = Request.Form("inID")
//A simpler way.Please change as needed.Its a working example and much simpler
<html>
<body>
<form action="survey2.asp" method="post" target="mywin" onsubmit="window.open('','
First Name<br><input type="text" name="txt" ><br>
<input type="hidden" name="inID" value = "EE"><br>
<input type="submit"></p>
</form>
</body></html>
//survey2.asp
<html>
<body>
<%
first=request.form("inID")
Response.Write first
%>
</body></html>
To set the width,height and properties you need to do it from the called page. When the page loads if you set the height and width in essence you are agin reloading the page.
So in brief, from the page(first) where you call the second page in the submit of the form set the parameters for the second page.
And the nyou can reference the hidden fields of the first page in the second using the Request.Form("textfield") variable.
I wont be using a button to submit remember. The last example worked that you gave alo when I changed the next page from Request.Form to Request.QueryString . Thhe window opens the way that I like except it has a bar at the top of the browser for instance look at the top of the browser where it says Active Server Pages (ASP): Open Browser with resize and no toolbars - Internet explorer - what is the name of that and how do I get rid of it?
Justice
Check http://www.devguru.com/Tec
If you want to remove that bar you need to've it as window.open('','mywin','fu
Page 1:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html
<%
Dim inID
'REQUEST VARIABLE VALUES
'inID = CInt(Request.QueryString("
'comment the following after testing the page
inID = 47
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="Extras/theParty.css"
<style type="text/css">
<!--@import url("../../Extras/thePty.c
</style>
<script language ="javascript">
window.open('proUP2.asp?in
</script>
</head>
<BODY bgcolor="#CC9900" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<form name="form1" method="post" action="proUP-1.asp" ENCTYPE="multipart/form-da
<!-- I WAS NOT SURE HOW TO DEFINE THIS HERE BECAUSE WE DECLARED IT AT THE TOP..THIS VALUE NEEDS TO BE PASSED TO THE NEXT PAGE proUP-1.asp -->
<input type="hidden" value="<%=inID%>" name="inID">
<table width="100%" border="0">
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td width="47%" class="whiteCopy">UPLOAD FILES
</td>
<td width="53%"><input name="FILE1" type="FILE" size="50"></td>
</tr>
<tr>
<td> </td>
<td><input name="Upload" type="submit" value="Upload"></td>
</tr>
</table>
</form>
</BODY>
</html>
--------------------------
Page 2:
--------------------------
<style type="text/css">
<!--
body {
background-color: #CC9900;
}
-->
</style>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
On Error Resume Next
'DECALARE VARIABLES
Dim inID
Dim mySmartUpload
Dim intCount1
Dim file
Dim oConn
Dim sConn
Dim oRs
Dim intCount
Dim strSQL
'you may leave the following 5 lines. When you will uncomment your sConn line, it will overide this setting.
'Dim dbPath
'Dim dbName
'dbName = "thePty.mdb"
'dbPath = Server.MapPath(".") & "/" & dbName
'var sConn = "dsn=thePty";
intCount = 0
'REQUEST VARIABLE VALUES -- this is to be sent from the page proUP.asp which gets it's value from the flash movie
' Object creation
' ***************
Set mySmartUpload = Server.CreateObject("aspSm
' Only allow txt or htm files
' **************************
mySmartUpload.AllowedFiles
' Deny upload if the total fila size is greater than 200000 bytes
' **************************
mySmartUpload.TotalMaxFile
' Upload
' ******
mySmartUpload.Upload
'Connect to DB
sConn = "dsn=thePtyDB;" 'while you uncomment this, you overide my connection string
Set oConn = Server.CreateObject("ADODB
oConn.Open (sConn)
' open recordset
strSQL = "SELECT FileName, File, MRID FROM Photos"
Set oRs = Server.CReateObject("ADODB
Set oRS.ActiveConnection = oConn
oRS.Source = strSQL
oRS.LockTYpe = 3
oRS.Open
inID = mySmartUpload.Form.Item("i
Dim sFile2Save, arrFile, sFile2DB, sUploadFile 'declare some more variables
For each file In mySmartUpload.Files 'run through the upload object file collection
'Only if the file exist
If not file.IsMissing Then
' Add the current file in a DB field
' **************************
oRs.AddNew 'tel the rs to add a new empty record
sUploadFile = file.FileName 'get the original uploaded filename
sFile2Save = inID & "_" & sUploadFile 'modify the filename so that it will include the inID
arrFile = Split(sUploadFile,".") 'strip the name only from the uploaded filename
sFile2DB = arrFile(0) 'the name that would be saved in the DB
'my folder - comment
'file.saveas "../Graphics/Photos/" & sFile2Save 'save the uploaded file to the server appropriate folder
'your folder - uncomment
file.saveas "/thePty/Graphics/Upload/"
oRs("FileName") = sUploadFile 'save the original uploaded filename in BD
oRs("File") = sFile2DB 'save the modified uploaded filename in BD
oRs("MRID") = inID 'save the inID value in the DB
oRs.Update 'update the new record with some data
intCount = intCount + 1 'no need for the intCount. However, I let you to remove it
End If
Next
' Destruction
' ***********
oRs.Close
oConn.Close
Set oRs = Nothing
Set oConn = Nothing
' Trap errors
' ***********
If Err Then
Response.Write("<b>Wrong selection : </b>" & Err.description)
Else
' Display the number of files uploaded
' **************************
Response.Write(intCount & " file(s) uploaded.")
End If
%>
Actually proUP.asp is page 1 --> proUp2.asp --> proUp-1.asp
This is really getting messy because the only page that I actually need are
proUp.asp -->proUp-1.asp
The probelm is that I need the first page to resize with no toolbars etc and the only way that I came up to do it is by sending it to another page just like itself which is why you see the code:
window.open('proUP2.asp?in
proUp2.asp is exactly like page 1 that you see above (I know that the logic is very dumb). However, I cant figure any other solution out.
Thanks,
Justice
Business Accounts
Answer for Membership
by: sajuksPosted on 2004-11-21 at 19:08:14ID: 12641183
you could open the window and set the features using the function below or iccorporate the features
ight) { rectories= no,status= no,menubar =yes,scrol lbars=yes, width=" + width + ",height=" + height + ",resizable=yes" ','mywin', features);
in your code
function OpenNewWindow(url,width,he
features = "toolbar=no,location=no,di
var win = window.open('myasppage.asp
}
you can set it to the reqd width and height by seeting the value of width and height
//
}