I have a user control that has a modal pop-up defined on it. On that pop-up I have a save button and a cancel button and a text box. On the cancel event I want to execute a script to clear the contents of the text box, but I'm unable to get the name of the text box. I've tried a host of differing approaches I found on the web all which were unsuccessful I think because they were geared towards just a user control and not a modal pop-up which doesn't get instantiated until later. The text box is a Telerik control, but I don't think that's an issue.
Below is the Modal window from the user control:
<asp:ModalPopupExtender ID="mpeLogEntry" runat="server" PopupControlID="pnlLogEntry" RepositionMode="RepositionOnWindowResizeAndScroll" CancelControlID="lnkBtnLogEditCancel" TargetControlID="ibAddLogEntry" BackgroundCssClass="modalBackground" OnCancelScri ...

Go to the complete details ...