所以我有一个自定义的带有 javascript 的 asp.net 控件。我希望能够从自定义控件所在的页面调用自定义控件上的控件的 ResetTimeout 方法。
这是我的代码的示例
**TestControl.CS**
[CLSCompliant(true)]
[ToolboxData("<{0}:TestControl runat=server></{0}:TestControl >")]
public class TestControl : WebControl, INamingContainer, IScriptControl, ICallbackEventHandler
{
}
**TestControl.JS**
// Timout Handler -- builds or resets the timeouts
ResetTimeout: function () {
this.HideControl();
this.StartTimers();
},
**TestPage.ASPX**
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<script type="text/javascript">
function test() {
($("#<%=Test.ClientID%>").ResetTimeout());
}
</script>
<cc1:TestControl id="Test" runat="server"> </TestControl>
</asp:Content>