SmartStoreNET icon indicating copy to clipboard operation
SmartStoreNET copied to clipboard

How to pass checked data from dynamic table to controller post method

Open amit018-hub opened this issue 2 years ago • 0 comments

@{ Layout = "~/Views/Shared/_AdminLayout.cshtml"; }

@**@
                    </div>
                    <div class="col-md-2">
                        <button type="button" class="btn btn-outline-primary" id="btn-add" style="float:right; margin-top:0px;">Add More</button>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
Employee Details

@*text-light*@
Check Employee Name Employee branch Employee Salary
            </div>
        </div>


        <div class="row mb-3">
            <div class="col-md-10"></div>
            <div class="col-md-2">
                <button type="submit" id="btnsumit" class="btn btn-outline-success">Submit</button>
                <button type="button" class="btn btn-warning waves-effect waves-themed" style="float:right;" onclick="location.href='@Url.Action("CreateEmp","Home")';">Cancel</button>
            </div>
        </div>
        <p>Total Number Of Employees:<label></label></p>
        <p>Total Salary:<label></label></p>
    </div>
</div>

amit018-hub avatar Dec 16 '22 17:12 amit018-hub