Posts by Conrad Clark • 981 points
9 posts
-
1
votes1
answer71
viewsA: Load variable with Split Expressions by scrolling through a list
To be very brief, you could replace transacaoPV = vlstAcessos.Any(l => l.DsURLTransacao == "frmPVListaProcessos.aspx").ToString(); so here: transacaoPV = vlstAcessos.Select(l =>…
-
1
votes1
answer128
viewsA: Date of last publication
Okay, a simple way to create a log to record the date every time a Publish run is by changing the build process to generate a log file after Publish. Note that this file is being generated from your…
-
1
votes1
answer229
viewsA: Loading old libraries to Requirejs
I don’t know much about Requirejs but there’s my attempt to help: Are you sure the jquery JS is not loaded, or is it just the variable that gets Undefined? Try to enable the jquery log…
-
1
votes1
answer560
viewsQ: Response.Write/Flush hangs after many calls
DISCLAIMER: I posted the same question in Stackoverflow in English, I will carry the valid answer from here to there or from there to here if necessary, but I know that not all users here access…
-
34
votes4
answers1166
viewsA: What are the differences between Generic Types in C# and Java?
Comparison C# vs Java C# stores the information of generic types instead of discarding it, unlike Java, this is correct Yes, in C# there is no Type Erasure which occurs in Java. In java, internally,…
-
5
votes8
answers2292
viewsA: Why create an object using the superclass?
I think I understand your question, you want a reason to instantiate Musico musico1 = new Violonista(); instead of Violonista musico1 = new Violonista(); Any method that accepts a Musico will accept…
-
16
votes5
answers18134
viewsA: Using jQuery, how to select elements with two CSS classes
Take space: $('.box1.destaque') http://jsfiddle.net/2w9x7/
-
2
votes3
answers2393
viewsA: Xmldocument Exception: hexadecimal value 0x1a, is an invalid character
It has yes guy, but before you should consider the possibility that the file is coming corrupted or something like that. If you are sure that this file is intact, and that there is only one invalid…
-
8
votes2
answers4039
viewsA: Why use Bytes instead of Image? What is the best practice?
I see some reasons for this. The first of them is that the type of data Image will be removed in some future version of SQL Server.(MSDN) Data types ntext, text and image will be removed in a future…