I want to call Generic Handler in .ascx
page for textbox autocomplete in dotnetnuke module.
I use this code but not working
<script type="text/javascript">
$(document).ready(function () {
$("[id*=txtSearch]").autocomplete({ source: '<%=ResolveUrl("~/Search_CS.ashx" ) %>' });
});
</script>