如何将数据从动态表传递到我的控制器

如何将数据从动态表传递到我的控制器

本文介绍了如何将数据从动态表传递到我的控制器.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<div class="form-group">
                           <div class="col-md-12">
                               <table id="mytbl" class="table table-striped table-hover table-bordered">
                                   <thead>
                                       <tr id='noa_header'>
                                           <th>
                                               PublicationCode
                                           </th>
                                           <th>
                                               IssueDate
                                           </th>
                                           <th>
                                               IssueNo
                                           </th>
                                           <th>
                                               CoverPrice
                                           </th>
                                           <th>
                                               ExictingOrderQuantity
                                           </th>
                                           <th>
                                               GRNQuantity
                                           </th>
                                           <th>
                                               DoDate
                                           </th>
                                           <th>
                                               status
                                           </th>
                                           <th></th>
                                       </tr>
                                   </thead>
                                   <tbody></tbody>
                               </table>

                               <div class="col-md-12">

                                   <div>
                                       <div class="row">
                                           <div class="col-md-offset-4 col-md-6">
                                               <input type="submit" value="SUBMIT" class="btn blue" id="Bttn_SUBMIT" />
                                           </div>
                                       </div>
                                   </div>


                               </div>
                           </div>
                       </div>

推荐答案


这篇关于如何将数据从动态表传递到我的控制器.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 02:50