Posts by Silvio • 46 points
5 posts
-
0
votes2
answers2755
viewsA: SQL to load only part of a string
In the question you did not specify in which database you are running, this query I did using SQL Server. But basically does the substring up to the ":" SELECT T.Texto ,SUBSTRING(T.Texto, 1,…
-
0
votes1
answer54
viewsA: Data is not being loaded in the Table
Dude, looking at your code what I think is that your chart is dynamically loaded with AJAX but your table below follows the normal stream of mvc. The ideal was to load the two in the same way, both…
-
1
votes1
answer73
viewsA: How to Perform Label Visibility Binding according to the size of a List
Dude, the question I see is that your variable BVExceed is not changed. Tries to put the method NumberOfBasicVariablesExceeded() together with the add or remove from your Collection and its return…
-
0
votes2
answers353
viewsA: Postback removes selected items Multiple dropdownlist
Need to use Updatepanel? Can’t switch to a Panel? Another thing you can check is if the Viewstate is enabled
-
2
votes1
answer849
viewsA: Prevent duplicate registration with C#
Man, the way I see it, you got two options. The first of these is to create a Constraint in the database table that makes it impossible to create duplicate records. In this case the bank itself will…