Posts by goenning • 146 points
4 posts
-
1
votes2
answers152
viewsA: How to make a functional string analysis method?
The problem is that you are using OR in condition. That is, if the name is different from A or different from B ... Consider that the name is ADAO. "A" != "A": false "A" != "B": true The comparison…
-
1
votes2
answers107
viewsA: Insert with monthCalendar in Mysql and C#database
It is always recommended to use Parameterized Query when executing SQL commands that have parameters. This way you avoid security problems such as SQL Injection and breaking need not worry about…
-
0
votes1
answer44
viewsA: Function that runs on scheduled time
I use the lib cron and has worked very well. But you can also do this with pure Javascript, just use the function setInternal. setInterval(function () { console.log('Isto aqui vai ser executado a…
-
1
votes1
answer296
viewsA: How to create a dynamic @Html.Actionlink with Jquery?
Instructions starting with @ are processed on the server side. Your file being a Javascript, will be sent to the client without any pre-processing. This means that the @ will not be processed by the…