Posts by Lucas • 51 points
5 posts
-
1
votes1
answer179
viewsQ: resize an image and then save to mysql
From a form I want to resize an image only after and then save in mysql, or take an image already saved in mysql and resize it and then update the record. I really appreciate it if someone can help…
-
2
votes1
answer49
viewsQ: id3 display album image in mp3 file using c# mvc Razor
I’m building an application in C# and ASP.NET MVC and Razor that reads data from mp3 files, but I can’t display the album image. I have tried several available libraries, I extract all information…
-
1
votes1
answer523
viewsQ: How to perform a C# CRUD with Mysql and ADO
I need to do the relationship between tables 1:N and N:N. Table produto: public int id {get; set;} public string produto {get; set;} public list<tamanhos> tamanhos {get; set;} Table tamanhos:…
-
1
votes3
answers821
viewsQ: Razor - Send parameters to a Bootstrap modal
I have a list (grid) and want to open a modal bootstrap with details of the chosen line. To build the list I’m using - @foreach, and store the data in a viewbag. The idea is to open the modal window…
-
0
votes1
answer901
viewsQ: Update a viewbag (c# Razor) with a javascript variable
Maybe what I want to do may be impossible, because of server and browser side issues, but I would like to do the following: <script> function pegarId(id) { $('@ViewBag.Id').value =…