Posts by Amon • 21 points
2 posts
-
2
votes1
answer51
viewsQ: How to stay with the selected item in a select after page transition?
What are the best ways to stay with a selected item in a select after page transition (Go to a page and then return with the already selected fields) using ASP.NET MVC? Session? Cache? Tempdata?…
-
-1
votes1
answer296
viewsA: How do I validate specific fields in SQL
As you said yourself, you will use the clause AND. Your query will be as below: select COUNT(CASE WHEN tipo = 0 THEN 1 ELSE NULL END) [TIPO_ZERO], COUNT(CASE WHEN tipo <> 0 THEN 1 ELSE NULL…