using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace TASKS.Models
{
public class PurchaseEntryDTO1
{
public bool chk { get; set; }
public long PurchaseNo { get; set; }
public DateTime InvoiceDate { get; set; }
public string InvoiceNo { get; set; }
public string VendorName { get; set; }
}
}
Member
40 Points
158 Posts
unable to get checkbox value in controller
Mar 11, 2020 08:01 AM|shijostephen|LINK
Hi,
I am unable to get checked value in chkRow checkbox, in controller from table in view,
my view code is as below..
controller is as below
Model
Thanks & Regards
Shijo