skip to Main Content

ASP.NET download csv file as zip?

I've been reading through: https://www.aspsnippets.com/Articles/Export-data-from-SQL-Server-to-CSV-file-in-ASPNet-using-C-and-VBNet.aspx Rather than only have the option to download as csv as described there in: //Download the CSV file. Response.Clear(); Response.Buffer = true; Response.AddHeader("content-disposition", "attachment;filename=SqlExport.csv"); Response.Charset = ""; Response.ContentType = "application/text"; Response.Output.Write(csv); Response.Flush(); Response.End(); is there…

VIEW QUESTION

ASP.net multiple select always returns 0 selected items

So i'm trying to build a User multi-select in order to get the participants to a project. This is my code: <form asp-page-handler="ProjectModalPartial"> @*numele metodei*@ <input name="IsValid" type="hidden" value="@ViewData.ModelState.IsValid.ToString()" /> <div class="form-group"> <label asp-for="ProjectsModel.ProjectName">Title</label> <input asp-for="ProjectsModel.ProjectName" class="form-control" placeholder="MyProject1" /> <span…

VIEW QUESTION
Back To Top
Search