Hi.
I need to open a new window from a Datagrid column, so I use:
<asp:HyperLinkColumn Text="Editar" DataNavigateUrlField="idclient" DataNavigateUrlFormatString="client.aspx?IdClient= {0}" Target="_blank" ItemStyle-HorizontalAlign="Center"/>
The problem is that I can't configurate the new window I open as I could do with "window.open" in JavaScript. I need to set the width, height, hide bars, etc, of the new window.
Any ideas?
Thanks.