Posts by Yendis • 11 points
3 posts
-
0
votes0
answers122
viewsQ: return/download pdf from backend to ajax
I am converting an html to pdf, I managed to generate the pdf in the backend with Submit, but with ajax I cannot download the pdf.. How can I treat in ajax to download? Code: [HttpPost]…
-
0
votes1
answer82
viewsA: Datagridview loads data but displays blank
Add a databind below the grid.Datasource. protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { var listaProdutos = new Produtos().ConsultarProdutos(); if (listaProdutos !=…
-
1
votes1
answer393
viewsQ: How to import log file into Asp.net mvc with Entity framework
I would like to ask a question and I do not know how to structure my need.. I need to import/export a file with records, and depending on each record will be a different table, with its references…