I'm trying to do a click counter in ASP.NET webforms and C #, and I need to convert the% number of clicks to a string in the label . But this does not work, the page is displayed but the number of clicks (the label ) does not appear.
Code...
My question is the following, I'm developing a program (I'm a beginner) in C #.
The part I wanted to improve, is this: I'm wanting to create different events in a for structure.
For example:
public frmSelecaoDeCartas()
{
InitializeComponen...
I have a linkButton that is disabled via server, like this:
lkExcluir.Enabled = false;
Code:
<asp:LinkButton ID="lkExcluir" runat="server" Text="[Excluir]" Font-Bold="true" OnClick="lkExcluir_Click" OnClientClick="return confirm('Tem...
Good afternoon guys,
I have the following AJAX request:
$(document).ready(function () {
$.ajax({
url: "/membros.aspx/populaGridMembros",
type: "POST",
dataType: "json",
contentType: "application...
I'm developing an ASP.NET application, which aims to register events and add clients to these registered events, forming a list of clients for each event.
My question is this:
In the Events table there are three types of input (integer type -...
I have the following ListView below, I need to leave the first 3 columns fixed and allow the rest scroll.
<td colspan="4">
<div class="GradeDados" style="position: relative; width: 1000px; height: 400px;
z-index: 1; overflow:...
I have a text box and a button. I just want to check the value of the textbox with javascript and prevent it from displaying if it is null.
Here is aspx:
<asp:TextBox ID="TextBoxName" runat="server"></asp:TextBox>
<asp:Button...
I have a form, and before the form is submitted I want to validate if the nome_carro field exists the same in the database. To do this validation I'm using javascript.
In the form I have the following:
<form method="post" action="...
Good afternoon guys, I have a report that is generated on a page aspx with bootstrap and CSS . The content of the report is within div <div id="pdf2htmldiv">...</div> where I call via javascript for printin...
Is it possible to add other values to AppSettings without breaking with the application?
Default values:
<appSettings>
<add key="Nome" value="ValorTeste" />
</appSettings>
I would like to leave it like this...