Get Multiple Selected checkboxes in MVC

前端 未结 5 1264
醉话见心
醉话见心 2020-12-24 09:50

i have a ProductController which is consists of Create method.

My Model :

public class ProductEntry
{
    public Crescent.LinqModel.Product Products         


        
5条回答
  •  一生所求
    2020-12-24 10:13

    
    
     [HttpPost]
            public ActionResult dowloadingfile(string[] selectionvalue_ck)
            {
    			string fileName = "";
    			for (int j = 0; j < selectionvalue.Length; j++)
                    {
    					fileName = selectionvalue_ck[j];
    				}
    		}
    
    
    
    
    
    
    

提交回复
热议问题