Posts by Vasconcelos Renato • 1 point
2 posts
-
-2
votes3
answers291
viewsA: Asp:Textbox type="date" is not completed
But as commented above, this has to do with the applied mask that in the case was yyyy-MM-dd. I also made something similar for a textbox field of type Textmode="Number" and it worked well. double…
-
-2
votes3
answers291
viewsA: Asp:Textbox type="date" is not completed
I did something like this and it worked, only I was picking it up from a Datatable object: Datetime dtCadastro = Convert.Todatetime(dt.Rows[0]["Dt_cadastre"].Tostring()); txtdtcadastro. Text =…