Hi,
Any idea why the click event doesn't fire after installation?
I am building a dynamic button control from codebehind. when I test it on localhost it works perfectly, but after I install it on IIS7 it doesn't seem to fire.
I tried testing it with alert messages at the beginning of the function, and the message doesn't appear.
This is my code:
TButton = new System.Web.UI.WebControls.Button();
TButton.ID = "T_" + i;
TButton.ToolTip = Tooltip;
TButton.Style.Add("left", Col + "mm");
TButton.Style.Add("top", Row + "mm");
TButton.Style.Add("position", "absolute");
TButton.Style.Add("z-index", i.ToString());
TButto ...
Go to the complete details ...