Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 ASP.NET
 target = SELF in open new window

Author  Topic 

juicyapple
Posting Yak Master

176 Posts

Posted - 2008-06-09 : 01:44:23

Hi all,

I have an attachment page, I put <base target="Self"/> in the header of the page. But when I click any button on the page, it still open a new window. Please help.



<!-- AttachFile.aspx -->
<base target="Self"/>

juicyapple
Posting Yak Master

176 Posts

Posted - 2008-06-10 : 20:41:03
solve my problem with

Put the following line in between the <Head></Head> tags
<base target="_self">

and this next line in the page_init
Response.Cache.SetNoStore()
Go to Top of Page
   

- Advertisement -