Posts by Igor Quirino • 164 points
3 posts
-
2
votes4
answers11049
viewsA: How to select in 3 tables?
Use joins: Inner Join: Registration required under A and B Left Join: Registration required on A, B may be null Right Join: Registration required on B, A may be null Tutorial:…
-
1
votes2
answers721
viewsA: Html.Editorfor value Default
You can change the property model.ModelPaging.Filter.dataInicioIndicadores for: private DateTime? _dataInicioIndicadores; public DateTime dataInicioIndicadores { get {…
-
1
votes4
answers16863
viewsA: Cross-browser way of copying text to the Clipboard (Clipboard)
This is a new option, but I imagine that all browsers are already updated, it was ie 6, 7, 8 and 9 was already. Works using the Document.execCommand('copy');command. With this command you will copy…