Posts by Gustavuu • 541 points
10 posts
-
0
votes1
answer98
viewsA: ASP.NET C# Listview Itemcommand is not working
<asp:Button ID="AdicionaLista" class="AddToList" runat="server" CommandName="AdicionarProduto" Text="Adicionar à Lista.." Autopostback="false" /> Solution: Autopostback="false"…
-
1
votes2
answers1179
viewsA: How does MVC layer-to-layer communication work?
The VIEW layer invokes the Click button. The click of the button will call the business layer BLL. BLL is in charge of making the business rules and invokes the layer DAL to interact with the…
-
2
votes5
answers2481
viewsA: Do not allow saving duplicate records
Your question has become too broad, you need to go into a little more detail. For example: What type of database are you using? The control of the records is done directly in the database and you…
-
1
votes1
answer3016
viewsA: Dropdownlist with invalid Selectedvalue because it does not exist in the item list
<td> <asp:DropDownList width="350px" ID="EntregaRegiaoDropDownList" runat="server" SelectedValue='<%# Bind ("Regiao") %>' //VALOR ATRELADO = REGIAO DataSourceID="SqlDataSource1"…
-
16
votes2
answers3414
viewsA: What are the advantages and disadvantages between action-based and Component-based frameworks?
According to some research I performed follows some points to be analyzed, everything depends on the need of your software: Action based Who uses this approach: Vraptor, Struts 2, Webwork,…
-
2
votes3
answers22309
viewsQ: IF condition inside a WHERE - ORACLE PL/SQL
See below for details of the problem in question: CREATE OR REPLACE PROCEDURE NOVODIA.PRC_PACIENTES_INATIVOS_95 ( --PARAMETROS IN_CPF IN VARCHAR2, IN_CARTAO IN VARCHAR2, OUT_CURSOR OUT SYS_REFCURSOR…
-
0
votes2
answers1579
viewsA: How to hide href with jQuery while input file is not selected?
For you to manipulate an object, be it a < a > link or any other html object, when you think about manipulating you must assign a single ID without repetition to that object so you can…
-
17
votes1
answer38900
viewsA: Get the value of the selected item in a Classic Sp Combobox
When your combobox is mounted it will look like the following structure: <select id="cb_catinsumo"> <option value="1">item1</option> <option value="2"…
-
3
votes1
answer117
viewsA: Transforming Checkboxlist Labels into strings
Here are some examples of how to capture the text of a Checkboxlist string ex1 = chkLista.SelectedItem.Text; string ex2 = chkLista.Items[0].Text; To save a record for each item I believe that the…
-
1
votes1
answer96
viewsA: How to get data from a Bulletedlist in Codebehind ASP.NET?
You can use the property Items, will be something like for (int i=0; i<BULLETEDLIST.Items.Count; i++) { if (BULLETEDLIST.Items[i].Selected) RETURN; } In place of return you place the logic of…