|
-
May 25th, 2005, 04:59 AM
#1
Thread Starter
Member
New window thru response.redirect
hi everyone,
is it possible to use functionality of target='new' using response.redirect....i am trying to open a link in new window on button's click event...here, i don't think we can write 'href'...so i have to use response.redirect.
plz help
yash.
-
May 25th, 2005, 01:51 PM
#2
I wonder how many charact
Re: New window thru response.redirect
You certainly could but it makes a boat load more sense to simply write an href tag.
-
May 26th, 2005, 12:22 AM
#3
Thread Starter
Member
Re: New window thru response.redirect
what exactly will be the syntax...kindly guide..
-
May 26th, 2005, 08:33 AM
#4
I wonder how many charact
Re: New window thru response.redirect
For the simple href?
Code:
<span class="button"><a target="_blank" href="http://www.google.com">Click Me</a></span>
.button
{
background-color: #B7DBFF;
border:2px outset #d3d3d3;
color: #000000;
font-size: 8pt;
font-family: Tahoma;
padding: 3px 5px;
width: 100px;
}
Last edited by nemaroller; May 26th, 2005 at 02:22 PM.
-
May 26th, 2005, 09:55 AM
#5
Lively Member
Re: New window thru response.redirect
xcuse me....
where do you put that code?
-
May 26th, 2005, 10:58 AM
#6
Frenzied Member
Re: New window thru response.redirect
You'll need to add Target="_blank", in order for it to open in a new window.
Being educated does not make you intelligent.
Need a weekend getaway??? Come Visit
-
May 26th, 2005, 12:07 PM
#7
Re: New window thru response.redirect
The first part is your regular HTML tag. The second part is CSS, which you should include within <style> tags.
-
May 26th, 2005, 02:21 PM
#8
I wonder how many charact
Re: New window thru response.redirect
 Originally Posted by Memnoch1207
You'll need to add Target="_blank", in order for it to open in a new window.
Or a lot of wishful thinking 
Good catch...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|