Posts by Everson Moura • 203 points
7 posts
-
2
votes2
answers79
viewsA: I’m not being able to assign values to variables
function BuscaDados(pIdAgenda) { var params = { Operacao: 'BuscaUnica', pIdAgenda: pIdAgenda }; return params; } Search data(123);
-
1
votes3
answers6114
viewsA: Display message after MYSQL query return empty
Maybe this link will help you: How to check if query-Results are Empty? content of the Link. $query= 'SELECT * FROM table'." WHERE id IS NOT NULL"; $result = mysql_query($query) or die ("Error in…
-
0
votes3
answers138
viewsA: Dynamic dropdown list and comic return image does not work
If after posting is giving Page not found. It may be the request path you are using. Try to mount the url like this: var strUrl = '@Url.Action("ConsultarRegiosPorPrestador", "TabelaFrete")';…
-
0
votes2
answers2005
viewsA: Detect which link was clicked
In your "div" add a "data-musicaid attribute" within the user script function $(this). attr('data-musicaid') to pick up the value put an example here…
-
0
votes2
answers692
viewsA: I cannot call Javascript function in textbox
try like this. <input type="text" onkeypress="MascaraData();" id="TextBoxDataInicio" /> function MascaraData() { TextBoxDataInicio = document.getElementById("TextBoxDataInicio"); data =…
-
3
votes2
answers167
viewsA: Manipulating related data Asp.net and C#
Just complementing the Gypsy response create Radiobuttonlist that way: <asp:RadioButtonList ID="rdgTipoEntrada" runat="server"> <asp:ListItem…
-
2
votes1
answer103
viewsA: Streaming (video) does not pause when refreshing the page
You could build your application as "single page", the content would be reloaded and your video would be a static area. I took a quick look at Facebook and apparently it’s built like this. If you…