Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
70
How can I incorporate the jQuery HTMLEditor in classic ASP
posted

We have a hybrid application where some of the code is Classic ASP and some is .Net.  We need to be able to incorporate the HTMLEditor in both environments.  How can we do this?  Is there a KB article available for this?

Parents
  • 12679
    Suggested Answer
    posted

    Hello @Rick,

     

    I would stick with the pure js and html representation of the control in order to avoid the differences on the server.  Since the igHtmlEditor is a simply jQuery widget you can reference all js, and css dependences in your page where you would like to show the widget then bring it up via  js code e.g.

    1. <script type="text/javascript">
    2.  
    3.     $(document).ready(function () {
    4.         $("#htmlEditor").igHtmlEditor();
    5.     });
    6.  
    7. </script>

     We don’t KB yet since the control is CTP, however in the upcoming release there will be extensive documentation and walkthroughs for the control.

    In your installation directory of jQuery NetAdvantage you can find a basic example of this widget that you can start with.

Reply Children