如果JS要调用用户控件中的服务器对象,则不能直接通过ID调用,要通过 <%= 控件名.ClientID%> 来调用。
例如:
--- 用户控件 --
<input type="text" class="txt" name="title" id="title" runat="server" />
<script type="text/javascript">
{
if(IsEmptyObj("<%= title.ClientID%>")){alert("请输入标题"); $focus("<%= title.ClientID%>"); return false;}
return true;
}
</script>