Ask a Question related to ASP Database, Design and Development.
-
Henry #1
pop up window
Does anone know if it is possible to write the code allowing the user to
browse directories and files on the server with some kind of window ?
I know this could be insecure but can it be done and how?
Thanks in Advance
Henry Guest
-
Page_Load not fired when window.open used to load window.
Hello John, Did you mean that the problem only happens after you upgrade to VS 2003 and framework 1.1? Does the problem exist in VS 2002 and... -
insert a frame or window into adobe acrobat or reader window
Using Windows OS XP or Vista. Can you ad a frame or window into the main window to allow saving a document through another application? I have an... -
New Window Target doesn't open a new window inContribute but does in Firefox
I have made the neccessary steps to allow a link to open in a new window by choosing "New Window" as the Target, and when testing the published page... -
Child window property window.opener null after postback
I have an webform from which I open a child window to display a calendar. When a date is selected in the calendar window it attempts to set the... -
dlopen is failing on Window XP works great on Window 2000
Michael Davis <mdavis@sevasoftware.com> writes: Check the permission of the so file: $ ls -l... -
Kris Eiben #2
Re: pop up window
If you just want to show the names of the folders and files, try
FileSystemObject.
[url]http://www.aspfaq.com/show.asp?id=2039[/url]
"Henry" <paul@themedialounge.com> wrote in message
news:#fEh5nuSDHA.1868@TK2MSFTNGP11.phx.gbl...to> Does anone know if it is possible to write the code allowing the user> browse directories and files on the server with some kind of window ?
>
> I know this could be insecure but can it be done and how?
Kris Eiben Guest
-
webjohn webforumsuser@macromedia.com #3
Pop Up Window
I designed a pop up window which consists of a form, tables within the form to hold the product image, product details, and a close button. The popup page will display a larger view and product details of items on my product page once a product is clicked. Then I used dreamweavers default behaviors to open the popup page once a image is clicked on the product page. Everything works fine except the image will not show. I've included the code for the pop up page with this post. I used dreamweaver behaviors to open the new window. I would greatly appreciate if someone could help me with this problem.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<TITLE>Tech 6 Boot BLK/BLK </TITLE>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<BODY onBlur="self.focus()" bgcolor=ffffff>
<form>
<table width="408" border=1 cellpadding=0 cellspacing="0" bordercolor="#000000">
<tr>
<td width="201" align=center> <div align="left"><img src="/Images/atv_catalog/tech_6/tech6blk.jpg" width="200" height="230">
</div></td>
<td width="184" align=center><table width="196" height="114" border="0" align="left" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td height="19" bgcolor="#CCCCCC"> <div align="center"><strong><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Product
Detail</font></strong></div></td>
</tr>
<tr>
<td height="19"><ul>
<li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Ergonomically
designed for top Performance</font></li>
</ul></td>
</tr>
<tr>
<td height="19"><ul>
<li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Ready
to race out of the box; little break-in-required</font></li>
</ul></td>
</tr>
<tr>
<td height="19"><ul>
<li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Two
middle buckles that connect around the ankles and flexible inserts
provide unprecedented lower leg support.</font></li>
</ul></td>
</tr>
<tr>
<td height="19"><ul>
<li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Four
Adjustable, Replaceable nylon buckles, top and bottoms levels
are reversed for better leverage and protection</font></li>
</ul></td>
</tr>
<tr>
<td height="19"><ul>
<li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Full-grain
leather construction</font></li>
</ul></td>
</tr>
</table></td>
</tr>
<tr bgcolor="#CCCCCC">
<td colspan="2" align=center>
<div align="center">
<input name="button" type=button onClick="self.close()" value="Close">
</div></td>
</tr>
</table>
</form>
<div align="left"></div>
</BODY>
</HTML>
webjohn webforumsuser@macromedia.com Guest
-
LizzyBomber #4
Pop Up Window
Hi,
Can anyone help me? I am a beginner at Director (8.5). I am creating a CD ROM
for a client, who has asked for the "Contact Us" button link to a Pop Up window
which will appear on top of the original movie. It also needs a close button to
get rid of it. Are these both possible?
LizzyBomber Guest
-
David Downie #5
Re: Pop Up Window
"LizzyBomber" <webforumsuser@macromedia.com> wrote in message
news:c1cjn0$985$1@forums.macromedia.com...ROM> Hi,
> Can anyone help me? I am a beginner at Director (8.5). I am creating a CDwindow> for a client, who has asked for the "Contact Us" button link to a Pop Upbutton to> which will appear on top of the original movie. It also needs a closehi yes a simple way would be just to have a hidden graphic which reveals> get rid of it. Are these both possible?
itself when requested and goes away when closed. You can do this with the
..visible attribute (which affects the whole channel). You can make one
graphic appear on top of the other by putting it in a higher numbered
channel than the earlier graphic.
so that would be something like this on the contact us button
on mouseUp
sprite(12).visible = true -- contact us box
sprite(13).visible = true -- close button
end
and this on the close button
on mouseUp
sprite(12).visible = false
sprite(13).visible = false
end
there are many ways of doing this, but this will direct you to one of them.
Make sure you don't have any other sprites use the dedicated channels (12,
13 in this example) as as I said the visible attribute affects the whole
channel.
David Downie Guest
-
David Downie #6
Re: Pop Up Window
I didn't mention the channels in 12 and 13 would have to be invisible to
start off with. So perhaps in the close button behaviour you might also have
on beginSprite
sprite(12).visible = false
sprite(13).visible = false
end
as I understand it beginSprite should be executed prior to the screen being
drawn, although there appears to be a bug in scripts doing this in frame 1
in full screen projectors so you should start your movie from another frame
and go to that frame directly when running the movie.
David Downie Guest
-
raltomondo #7
pop up window
:confused;
I am trying to desing a pop up window which will come up after a button is
pressed. I get the actual size window showing it cannot find the page? How
can I create a pop up window using Dreamweaver MX. I have tried 40 times by
reading the instructions from the google search and I still cannot get it to
display the actual page.
Thank You.
raltomondo Guest
-
rilkesf #8
Re: pop up window
If you're working in Code view, just add 'target='_blank" to the link tag:
<a href="yourpage.html" target="_blank">link text</a>
If you're working in design view, just change the target to _blank
rilkesf Guest



Reply With Quote

