Posts by Vinicius Carvalho • 101 points
5 posts
-
0
votes2
answers2131
viewsA: Search between two dates in my database
Complementing Tony’s response, the way his code is implemented is not good practice, but I believe it’s some kind of study or a POC ! With this, you can send the filters via Parameter ! protected…
-
1
votes1
answer159
viewsA: String conversion problem in Timespan
Kaique, I performed a test and converted to "00:02:21.6395054" ! var tempo = new TimeSpan(1416395054);…
-
1
votes2
answers311
viewsA: Difficulty to handle button event in the itemcommand of the Peater
as I exemplified in the other post, just associate the event method to the button and link click. See if the example below suits you: protected void rptGerenciaProcessos_ItemDataBound(object sender,…
-
4
votes1
answer224
viewsA: Direct button click into table item_databound
from what I understand you need something like this, no ? protected void rptGerenciaProcessos_ItemDataBound(object sender, RepeaterItemEventArgs e) { // Procurando o botão no Repeater var button =…
c#answered Vinicius Carvalho 101 -
1
votes1
answer838
viewsA: Radiobutton returning selected status only
as reported by @Laerte, I performed the test below and worked perfectly. Aspx <form id="form1" runat="server"> <div> <asp:RadioButtonList ID="rdlCpfCnpjAvalista" runat="server"…
c#answered Vinicius Carvalho 101