Hi,
you can use
window.open('your aspx page url','title of
Window','Width=272,toolbar=0,height=232,resizable=No');
in your aspx page like:
Page.RegisterStartupScript("SomeUniqueName",
"window.open('your aspx
page url','title of
Window','Width=272,toolbar=0,height=232,resizable=No');&
quot;);
in your Page_Load event handler
but the problem is that IE/FF will block this this popup
cause it does
not came from user action
so the old classic way is to set some javascript to your
control and
try not to make it ASP.NET control but just simple HTML
control without
POSTBACK and RUNTAT="SERVER"
I hope this work
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "C# Developers" group.
To post to this group, send email to CSDevelopers googlegroups.com
To unsubscribe from this group, send email to
CSDevelopers-unsubscribe googlegroups.com
For more options, visit this group at http://gr
oups.google.com/group/CSDevelopers
-~----------~----~----~----~------~----~------~--~---
|