Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
show dữ liệu từ datatable ra View trong asp.net mvc
11:05 28-07-2017
2.109 lượt xem
3 bình luận
12:01 31-07-2017
Mình có 1 datatable đã lấy được dữ liệu(Mô hình asp.net MVC).
giờ làm sao để lấy được dữ liệu từ datatable đó đổ dữ liệu ra View đc ạ
//controller
public ActionResult Index(ReportMerchantSearchForm searchForm, string command)
{
if (command.Equals("Search"))
{
string getMerchantPurse = "";
var mcDao = new mc_merchantsDao();
var merchantlist = mcDao.ListAll();
foreach (var item in merchantlist)
{
getMerchantPurse += "'" + item.merchant_purse + "',";
}
getMerchantPurse = getMerchantPurse.Substring(0, getMerchantPurse.Length -1);
var wm_devbackend_operationsDao = new wm_devbackend_operationsDao();
DataTable historyMerchant = wm_devbackend_operationsDao.getHistoryMerchant(getMerchantPurse, CommonConstants.CONNECTION_STRING_WALLET_DB);
DataTable dt = new DataTable("historyMerchant");
return View(dt);
}
ViewBag.searchForm = searchForm;
return View();
}
Có ai đang onl support dùm em với ạ
bên view @model Kiểu dữ liệu
Bên controller return View(model của bạn);