1

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>
Divyang Desai
  • 7,483
  • 13
  • 50
  • 76
Siavash
  • 13
  • 6

1 Answers1

0

You get an error in console. probably your autocomplete URL goes wrong when you call Generic Handler, and this doesn't relate with dotnetnuke.

If you're new to javascript/Jquery please check this, for checking console log.

Community
  • 1
  • 1
Divyang Desai
  • 7,483
  • 13
  • 50
  • 76