Previous Article
ASP Classic Lessons 1 - 4
Coding Source Editor with AJAX
Next Article
Ajax Tutorial: Dynamic Loading of ComboBox using jQuery and Ajax in ASP Classic
Coding Article #: 32 - Published On: January 23, 2012 @ 20:10:03 PM - Last Updated on: July 13, 2012
This article has been Favorited 16 times
Join today, and add this to your favorites.
Coding Source - Share on MySpace Coding Source - Share With Facebook Coding Source - Share on Twitter Coding Source - Share on Reddit Coding Source - Share on Digg It Coding Source - Share on Stumble Upon It Coding Source - Share on Delicious
Share With Friends (Updated 6-8-2010)

Supported Files
File Download:
carrzkiss_025041Editor.zip
File Size: 349.87 KB
Unzip with
Download winzip today!(OR)
Screenshot of Source Code
Coding Source - Coding Source Editor with AJAX
This Editor is used through all of CFF Sites, to make it easier for us to give our users, Rich Text to read, without the hassle of having to edit tags.
This Editor will Submit the form with the use of AJAX and will show your work as it is progressing.
This is really good for Rich User-Friendly websites.

SQL and XSS Injections are a major concern with any developer that designs database driven websites.
In this demonstration, you will learn how to help project your database using a function that I personally created, and use in our site(s), called: protectSQL() and reverseSQL().

Example: View Live Example«

<div id="pageMain">
  <div class="mainSection">
    <form class="form" name="EditorForm" action="data/NewInsert.asp" method="post" onSubmit="xmlhttpPost('data/NewInsert.asp', 'EditorForm', 'EditorFormDiv', '<img src=\'graph/pleasewait.gif\'>'); return false;">
      <blockquote>
        <div class="formRow autoHeight">
          <div class="formValue">
            <div class="pttaWrapper">
              <!--#include file="editor/Buttons.asp"-->
              <textarea class="input" cols="80" rows="18" name="Editor" id="Editor" onKeyDown="limitText(this.form.Editor,this.form.countEditor,500);" onKeyUp="limitText(this.form.Editor,this.form.countEditor,500);" tabindex="1"></textarea>
            </div>
          </div>
        </div>
        <input readonly type="text" name="countEditor" size="5" value="500">
      </blockquote>
      <input type="submit" name="Submit" value="Insert" class="UpFF" tabindex="2"/>
    </form>
    <div id="EditorFormDiv"></div>
  </div>
</div>
Post to Facebook about: Coding Source Editor with AJAX