Preventing pop-up blocking - how ?
-
Hi, I'm using a LinkButton control with the following event: public void OnLinkButtonClicked(object sender, System.EventArgs e) { string command; command=@" window.open(....); this.RegisterClientScriptBlock("clientScript", command); } It works fine in IE but it's being blocked in firefox. Is there a way to prevent the blocking in firefox without changing the properties in the browser? Beyond that, what's so special with the LinkButton control ? it seems like anything that it doess can be performed with other controls like HyperLink or Button and others. Thanks -- modified at 15:15 Friday 28th October, 2005</x-turndown>
-
Hi, I'm using a LinkButton control with the following event: public void OnLinkButtonClicked(object sender, System.EventArgs e) { string command; command=@" window.open(....); this.RegisterClientScriptBlock("clientScript", command); } It works fine in IE but it's being blocked in firefox. Is there a way to prevent the blocking in firefox without changing the properties in the browser? Beyond that, what's so special with the LinkButton control ? it seems like anything that it doess can be performed with other controls like HyperLink or Button and others. Thanks -- modified at 15:15 Friday 28th October, 2005</x-turndown>
Hi there,
israeli wrote:
Is there a way to prevent the blocking in firefox without changing the properties in the browser?
I think no now ;(... If there is a way u know , post it here for reference...
israeli wrote:
what's so special with the LinkButton control
this is a hyperlink-style button, combination of hyperlink and button. << >>
-
Hi, I'm using a LinkButton control with the following event: public void OnLinkButtonClicked(object sender, System.EventArgs e) { string command; command=@" window.open(....); this.RegisterClientScriptBlock("clientScript", command); } It works fine in IE but it's being blocked in firefox. Is there a way to prevent the blocking in firefox without changing the properties in the browser? Beyond that, what's so special with the LinkButton control ? it seems like anything that it doess can be performed with other controls like HyperLink or Button and others. Thanks -- modified at 15:15 Friday 28th October, 2005</x-turndown>