do the processing through a javascript function, this way you can open the window however you wish. it's a bit of a hack, but it's the only way that I can think of doing it.
if you pass params through the querystring,pass them into your jscript fxn, and just concat the results.
eg:
function myredirect(name, add) {
var url="somepage.asp?name=" + name + "&add=" + add;
location.href=url;
}
that should give you an idea...
hth
leo
------------
Leo Mendoza
lmendoza@students.depaul.edu
excellent suggestions. thanks people. I need to open a window of a particluar size, just displaying a picture and some text. I guess javascript wopuld be best suited to this task?
what about if I want to do trhis from a hyperlink, if i call the javascript from the href tag then it tries to find a page with the name of the function + parameters.
Bit of a newbie but what tag/function/event do I use for this. It MUST be a hyperlink. Any ideas?
<SCRIPT Language="JavaScript">
<!-- // Begin hiding script from crummy old browsers...
var messageWindow;
function newWindow(messageID){
messageWindow = window.open(messageID, 'MessageWin', 'Width=450,height=340,location=yes')
messageWindow.focus()
}
// end hiding from the old crap ass browsers -->
</SCRIPT>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.