Posts by user4849 • 141 points
5 posts
-
0
votes3
answers802
viewsA: Post in a checkbox list
Unfortunately it didn’t work for me. I’ll send you the model I send to the view. `Follow my model: public class CadastrarAgendamentoViewModel { public int Id { get; set; } public int ClienteId {…
asp.net-mvcanswered user4849 141 -
2
votes3
answers802
viewsQ: Post in a checkbox list
I am creating an application where the user will be able to select a variety of products through checkbox. But when I click on "Buy" the list is empty. Someone can give me a help with this? That…
asp.net-mvcasked user4849 141 -
0
votes4
answers4168
viewsA: Convert string to Time
I was able to solve the case with the following solution: var horaRetorno = retornoVeiculo.HoraDaChegada.Split(':')[0]; var minRetorno = retornoVeiculo.HoraDaChegada.Split(':')[1]; var tR =…
-
5
votes4
answers4168
viewsQ: Convert string to Time
I got a column in the database that gets a guy varchar which corresponds the hours on my app ("HH:MM"). I need to convert this string to a type TIME and then concatenate with a type DateTime.…
-
7
votes3
answers4237
viewsQ: Date field 01/01/0001
I’m with a project Asp.net-mvc3 who owns a View that has a field to receive a type DateTime. In the database this field is required. The problem is that whenever I access the respective View, this…