Questions tagged as 'webforms'

2
answers

submitting submit button even when canceling

I have a button in ASP.NET webForm and even clicking cancel it sends the submit. Example on Fiddle link $(function () { $("[name='chk_IDDel']").change(function () { var disabled = true; $("[name='c...
asked by 23.03.2015 / 19:32
1
answer

Error in encryption in C #

Hello!  I already tried to parse the code but I can not find the answer. using System; using System.Collections.Generic; using System.Text; using System.Linq; using System.Web; using System.IO; using System.Security.Cryptography; /// <summ...
asked by 24.04.2014 / 14:00
1
answer

Data overlapping the onClick command

Well, I have a small problem with asp.net webforms . And I gave a cool pack. I know the solution to this may be a bit simple, but I'm confused. Follow the code: public partial class Default : System.Web.UI.Page { List<Pessoa>...
asked by 28.10.2014 / 19:13
1
answer

How can I maintain only specific DataFrame rows?

I have code that goes into a website, fills in a form and pulls a table, however, I want to delete some rows from this table that I do not need. Let's go to the code: #library's require(RCurl) require(XML) require(stringr) require(plyr) req...
asked by 07.03.2017 / 21:05
1
answer

Javascript set value of one field in others

I have the following code below <script type="text/javascript"> function getValue() { var x = document.getElementById("NuJaneiro"); document.getElementById("NuFevereiro").value = x.value; } </script> <td...
asked by 17.12.2015 / 18:35
1
answer

How to develop an asynchronous mechanism to test pings?

I'm having a slowness problem with a transaction that pings to see if certain IP's are accessible. It turns out that this transaction tests more than 20 different IP's, which makes the total transaction time is 2 minutes. To decrease the total t...
asked by 27.08.2014 / 21:52
1
answer

What is AsyncPostBackTrigger Class?

How should I use and what does this type of class?     
asked by 26.03.2017 / 04:25
1
answer

Internationalization, Localization and Globalization

I have a project that needs to work with internationalization, where the web application needs to be available in at least Portuguese and English , and perhaps also in Spanish. My biggest difficulty with this understanding is that when I s...
asked by 23.01.2015 / 12:56
1
answer

Using Onblur in Asp.Net with problems!

I need to format and validate a date field by using the OnBlur property of Javascript within the codebehind C #. The problem is that it performs the javascript function and does not return the value for the field. In relation to this I...
asked by 25.06.2015 / 17:01
1
answer

Disable asp: Button after being clicked

Project in: WebForm, C #, ASP.net I need to disable the button after it has been clicked. Today it looks like this: <asp:Button ID="btn_Enviar" runat="server" CssClass="btn btn-primary" Text="Enviar" OnClick="btn_Salvar_Click" data-loadi...
asked by 22.08.2014 / 15:28