The scenario is:
I'm creating an table row that have 4 textbox into a placeholder each time the button is clicked. When it's all created and I click in another button (the calculate button) all the controls that was added to the placeholder are disappearing.
The Asp.net code is:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="simulador.aspx.cs" Inherits="simulador" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style>
* {
padding: 0;
margin: 0;
font-family: Calibri;
}
body{
/*background-image: url(BGLogo.png);
background-attachment: fixed;*/
}
table{
border: 1px solid #eee;
}
#d ...
Go to the complete details ...