Hello All,
I am registering handler for onclick event for link button from code behind.
i am able to invoke the method on click of link button on IE and chrome
BUT it is NOT working on firefox
So, can any tell what should be the issue ??
Below is my code
LinkButton lnkClose = new LinkButton();
lnkClose.OnClientClick = "return DiscardEmail('" + tabId + "');";
lnkClose.CausesValidation = false;
lnkClose.Click += this.TabClose_Click;
lnkClose.ToolTip = "Close Tab";
lnkClose.Text = "Close";
lnkClose.ID = "lnkClose";
and in Javascript 'DiscardEmail' function I have confirm pop-up (yes/no).
So, cany anyone what changes i need to make to work on all browsers
Go to the complete details ...