Posts by Paulo • 36 points
2 posts
-
0
votes2
answers1043
viewsA: Onclick does not call the function
Good morning, as Lucas said, it may be that your call is not taking effect, put it at the bottom of the page. @Section scripts{ @Scripts.Render("~/JS/Funcao") }…
javascriptanswered Paulo 36 -
2
votes2
answers613
viewsA: Comparing multiple Textbox fields to check for duplicity
A simple way to do this is to use an Array Int64[] valores = new Int64[3]; valores[0] = Convert.ToInt64(textBox1.Text); valores[1] = Convert.ToInt64(textBox2.Text); valores[2] =…