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; }
}
}
.NET forums are moving to a new home on Microsoft Q&A, we encourage you to go to Microsoft Q&A for .NET for posting new questions and get involved today.
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
Participant
1320 Points
491 Posts
Re: unable to get checkbox value in controller
Mar 12, 2020 06:44 AM|jiadongm|LINK
Hi shijostephen,
It seems you have solved the problem in another thread
https://forums.asp.net/t/2164927.aspx
Best Regards,
Jiadong Meng