Why only one?
Well, what has been happen to me is that the window just pop up after the second click and i dont know why this is happening.
The code inside the link button is:
Someone knows why this is happening?
Thanks in advance.
Well, what has been happen to me is that the window just pop up after the second click and i dont know why this is happening.
The code inside the link button is:
Code:
protected void CicloCamLink_Click(object sender, EventArgs e)
{
string openWindow = @"window.open('CicloCamarasWindow.aspx','anycontent','width=455,height=435,resizable=1')";
CicloCamLink.Attributes.Add("onclick", openWindow);
}
Thanks in advance.
Comment