D
Drew
I need to find out how to incorporate a popup window that passes a
querystring, after some quick research I found that by using JavaScript that
you can pop up a window,
var newwindow;
function poptastic(url)
{
newwindow=window.open(url,'name','height=400,width=200');
if (window.focus) {newwindow.focus()}
}
and using a link like this, you can pop the window,
<%Response.Write("<a
href=""javascriptoptastic('detailPastEvents.asp?RegNo='" &
rsEvents.Fields.Item("RegNo").Value & "');"">past events</a>")%>
My issue is that I need to pass a querystring when opening this page, and I
can't figure out how to make this work. Can anyone help me out?
Thanks,
Drew
querystring, after some quick research I found that by using JavaScript that
you can pop up a window,
var newwindow;
function poptastic(url)
{
newwindow=window.open(url,'name','height=400,width=200');
if (window.focus) {newwindow.focus()}
}
and using a link like this, you can pop the window,
<%Response.Write("<a
href=""javascriptoptastic('detailPastEvents.asp?RegNo='" &
rsEvents.Fields.Item("RegNo").Value & "');"">past events</a>")%>
My issue is that I need to pass a querystring when opening this page, and I
can't figure out how to make this work. Can anyone help me out?
Thanks,
Drew