Ask a Question related to Dreamweaver AppDev, Design and Development.
-
lunaboyd #1
Passing URL info to pop-up window? ASP...
Hi, I'm working on an ecommerce site and want to add the ability for people to
click the product image to see an enlarged pic in a pop-up window. The site is
dynamic, so the pop-up needs to grab the product ID# from the parent's URL and
show the corresponding image. How do I get that value into the pop-up? I can
open a new target window and pass the URL value okay, but then I don't have
control over the size of the new window. When I open a window with js, I can't
manage to pass the product ID to the new window. I'm sure I am missing
something simple. Any suggestions? Thanks!
lunaboyd Guest
-
Passing some info to a control at runtime.
Hi all, I've made a user control and I need to pass it some information so it knows what it should display. Can anyone tell me what i need to do... -
swf able to see info about javascript window?
Let's say I have a _root movie playing in a browser and I invoke an action to open a new named JavaScript browser window. Into this new window an... -
passing user name info to protected page
Hello. Newbie question I'm sure. I've got this page I am securing with a password using a simple LOGIN.ASPX page: <%@ Page Language="VB" %>... -
Help ::::: Passing info from flash to director getting mad results
I'm aving a bit of trouble with flash passing info to director using getURL with event: Here's my problem : Three movies in flash called ... -
passing variable info
This is similar to George Mizzel's problem, maybe? I am trying to pass some info from one page to another. The first page is a booking form, the... -
darrel #2
Re: Passing URL info to pop-up window? ASP...
> Hi, I'm working on an ecommerce site and want to add the ability for
people tosite is> click the product image to see an enlarged pic in a pop-up window. Theand> dynamic, so the pop-up needs to grab the product ID# from the parent's URLThe easiesy way is to generate the link dynamically so you can pass the> show the corresponding image. How do I get that value into the pop-up?
variable via a querystring:
<a href="largeview.asp?id=123">view large version</a>
Then grab the querystring in the 'largeview.asp' page.
-Darrel
darrel Guest
-
lunaboyd #3
Re: Passing URL info to pop-up window? ASP...
Darrel, Thanks. I tried this before, but it opens another full-size browser
window, and I need to launch a 600x600 pop-up instead. Is there a way to
control the size of the largeview.asp page after it opens? If not, my dilemma
remains... how to open a pop-up using javascript, and then somehow pass the
product ID into that new window. Emily
lunaboyd Guest
-
darrel #4
Re: Passing URL info to pop-up window? ASP...
> Darrel, Thanks. I tried this before, but it opens another full-size
browserdilemma> window, and I need to launch a 600x600 pop-up instead. Is there a way to
> control the size of the largeview.asp page after it opens? If not, mythe> remains... how to open a pop-up using javascript, and then somehow passASP:> product ID into that new window. Emily
<% dim productID as string = 12938 %>
<a href="page.html?<%=productID%>"
onClick="window.open('page.html?<%=productID%>',
'windowname','toolbar=no,location=no,directories=n o,status=no,menubar=no,scr
ollbars=yes,resizable=yes,copyhistory=no,width=300 ,height=290');return
false;">Your link</a>
-Darrel
darrel Guest



Reply With Quote

