Jquery Tokeninput

Jquery Tokeninput

Hi

   I am using Jquery TokenInput . I want to save values using Ajax in database. If multiple Tokens multiple records should be saved.
  1. <div class="form-group">
  2.                     @Html.LabelFor(model => model.CategoryID, "CategoryID", htmlAttributes: new { @class = "control-label col-md-2" })
  3.                     <div class="col-md-10">
  4.                         @Html.DropDownList("CategoryID", null, htmlAttributes: new { @class = "form-control" })
  5.                         @Html.ValidationMessageFor(model => model.CategoryID, "", new { @class = "text-danger" })
  6.                     </div>
  7.                 </div>
  8.     
  9.                 <div class="form-group">
  10.                     @Html.LabelFor(model => model.ParentCategoryID, htmlAttributes: new { @class = "control-label col-md-2" })
  11.                     <div class="col-md-10">
  12.                             <input type="text" id="CategoryList" name="Categories" class="form-control" />

  13.                     </div>
  14.                 </div>

Thanks