Posts by Joao Rezende • 129 points
6 posts
-
0
votes3
answers1696
viewsQ: How to transpose rows into columns?
It’s already been answered by Motta, thank you for your patience. How can I transpose rows to columns in Sqlserver, so something like that: Stick to this format?…
-
0
votes1
answer43
viewsA: Scriptmanager.Registerstartupscript and Key
Finally got! Instead of ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), csname, cstext, true);, placed this.Controls.Add(new LiteralControl("<script…
-
0
votes1
answer43
viewsQ: Scriptmanager.Registerstartupscript and Key
Good afternoon, I wanted to understand how this Key works, I have a function in aspx I need in code-Behind, but when I call with a static Key, putting csname = "x"; She only gets called once, but I…
-
6
votes2
answers7804
viewsA: Convert a dd/MM/yyy string to Datetime
Tries to replace the CultureInfo.InvariantCulture for CultureInfo.CreateSpecificCulture("pt-BR") - Richard Dias It worked and stayed that way: DateTime dataFim = DateTime.ParseExact(txtDataFim.Text,…
-
2
votes2
answers7804
viewsQ: Convert a dd/MM/yyy string to Datetime
I have a date filter that should receive the information from a textbox and convert it to Datetime, so I can then compare it to another date. The textbox sends the date in the dd/MM/yyyy format, but…
-
2
votes1
answer95
viewsQ: How to put a "show more" on gridview
How to do this: Turn this around: The only thing I can imagine is putting a treeview inside the gridview, even so, I don’t even know if that’s possible. The doubt is only about the functional part…