Asked by:
Update Panel and PostBack Triggers

Question
-
User249168428 posted
Hi all,
I have web form which includes few control like Textbox, Radiobuttonlist, dropdownlist, fileupload, Updatepanel, postback triggers and also button to insert the data into sql server table, on button click i am getting an error saying "property evaluation error" but before adding updatepanel and postbacktriggers my data was getting inserted successfully into the sql server table. below is my source code, i don't know what is causing the error, someboby please guide me on this how to fix it. Code with some samples will be more appreciated.
Source Code:
<%@ Page Language="VB" MasterPageFile="~/SiteMaster/MasterPage.master" AutoEventWireup="false"
CodeFile="PMAYU_DPR_ENTRY.aspx.vb" Inherits="ULB_PMAYU_DPR_ENTRY" Title="Untitled Page" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="Ajax" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
function Validate() {
if (document.getElementById("<%=txtsc.ClientID %>").value == "") {
alert("Enter value for SC under Column No.1");
return false;
}
else if (document.getElementById("<%=txtst.ClientID %>").value == "") {
alert("Enter value for ST under Column No.1");
return false;
}
else if (document.getElementById("<%=txtgen.ClientID %>").value == "") {
alert("Enter value for General under Column No.1");
return false;
}
else if (document.getElementById("<%=txtmino.ClientID %>").value == "") {
alert("Enter value for Minority under Column No.1");
return false;
}
else if (document.getElementById("<%=txtareaward.ClientID %>").value == "") {
alert("Enter Area Name Under Column No.2 ");
return false;
}
else if (document.getElementById("<%=ddlwardno.ClientID %>").value == "0") {
alert("Select the Ward No. Under Column No.2 ");
return false;
}
else if (document.getElementById("<%=txtsyno.ClientID %>").value == "") {
alert("Enter Site No. Under Column No.2 ");
return false;
}
else if (document.getElementById("<%=txtExtent.ClientID %>").value == "") {
alert("Enter Extent (in acres) Under Column No.2 ");
return false;
}
else if (document.getElementById("<%=ddlownership.ClientID %>").value == "0") {
alert("Select the Ownership details Under Column No.2 ");
return false;
}
else if (document.getElementById("<%=ddlstructure.ClientID %>").value == "0") {
alert("Select the option for Structure Under Column No.3 ");
return false;
}
else if ((document.getElementById("<%=ddlstructure.ClientID %>").value == "5") &&
(document.getElementById("<%=txtstructure.ClientID %>").value == "")) {
alert("Enter value for Structure Under Column No.3");
return false;
}
else if (document.getElementById("<%=txtcarpetarea.ClientID %>").value == "") {
alert("Enter value for Carpet Area under Column No.4 ");
return false;
}
else if (document.getElementById("<%=ddlbenf.ClientID %>").value == "0") {
alert("Select the option for Type of Beneficiaries under Column No.6 ");
return false;
}
else if (document.getElementById("<%=txtunitcost.ClientID %>").value == "") {
alert("Enter value for UnitCost under Column No.7 ");
return false;
}
else if (document.getElementById("<%=txtschedule.ClientID %>").value == "") {
alert("Enter value for Schedule of rate adopted under Column No.8 ");
return false;
}
else if (document.getElementById("<%=txtGOKSCST.ClientID %>").value == "") {
alert("Enter value for GOK Subsidy (SC/ST) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtGOKGenOthers.ClientID %>").value == "") {
alert("Enter value for GOK Subsidy (Gen/Others) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtGOISCST.ClientID %>").value == "") {
alert("Enter value for GOI Subsidy (SC/ST) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtGOIGenOthers.ClientID %>").value == "") {
alert("Enter value for GOI Subsidy (Gen/Others) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtBenfContSCST.ClientID %>").value == "") {
alert("Enter value for Benf. Contribution (SC/ST) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtBenfContGenOthers.ClientID %>").value == "") {
alert("Enter value for Benf. Contribution (Gen/Others) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtulbshareSCST.ClientID %>").value == "") {
alert("Enter value for ULB Share (SC/ST) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtulbshareGenOthers.ClientID %>").value == "") {
alert("Enter value for ULB Share (Gen/Others) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtbankloanSCST.ClientID %>").value == "") {
alert("Enter value for Bank Loan (SC/ST) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtbankloanGenOthers.ClientID %>").value == "") {
alert("Enter value for Bank Loan (Gen/Others) under Column No.9 ");
return false;
}
else if (document.getElementById("<%=txtperacre.ClientID %>").value == "") {
alert("Enter value for Per Acre under Column No.11 ");
return false;
}
else if (document.getElementById("<%=txttechadopted.ClientID %>").value == "") {
alert("Enter value for Technology Adopted under Column No.13 ");
return false;
}
else if ((document.getElementById("<%=rblavailTarget.ClientID %>").value == "Y") &&
(document.getElementById("<%=ddlschemescst.ClientID %>").value == "0")) {
alert("Select Scheme for SC/ST under Column No.14");
return false;
}
else if ((document.getElementById("<%=rblavailTarget.ClientID %>").value == "Y") &&
(document.getElementById("<%=ddlseriesscst.ClientID %>").value == "0")) {
alert("Select Series for SC/ST under Column No.14");
return false;
}
else if ((document.getElementById("<%=rblavailTarget.ClientID %>").value == "Y") &&
(document.getElementById("<%=ddlschemegenothers.ClientID %>").value == "0")) {
alert("Select Scheme for Gen/Others under Column No.14");
return false;
}
else if ((document.getElementById("<%=rblavailTarget.ClientID %>").value == "Y") &&
(document.getElementById("<%=ddlseriesgenothers.ClientID %>").value == "0")) {
alert("Select Series for Gen/Others under Column No.14");
return false;
}
else if ((document.getElementById("<%=Rblashcommitee.ClientID %>").value == "Y") &&
(document.getElementById("<%=txtRefDate.ClientID %>").value == "")) {
alert("Select/Enter beneficiary list approved by ashraya commitee Refernece Date under Column No.15");
return false;
}
else if ((document.getElementById("<%=Rblashcommitee.ClientID %>").value == "Y") &&
(document.getElementById("<%=txtchairmen.ClientID %>").value == "")) {
alert("Beneficiary list approved by ashraya commitee Chairman Name under Column No.15");
return false;
}
else if ((document.getElementById("<%=Rblashcommitee.ClientID %>").value == "Y") &&
(document.getElementById("<%=txtmembersec.ClientID %>").value == "")) {
alert("Beneficiary list approved by ashraya commitee Member Secretary Name under Column No.15");
return false;
}
else {
return true;
}
}
function validateNumber() {
if (event.keyCode >= 48 && event.keyCode <= 57) {
}
else {
event.keyCode = 0;
alert("Enter only Numbers/Integers.");
return false;
}
}
function isNumber(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<center>
<h3 class="title">
Submission of DPRs Under PMAY:HFA(U)Projects</h3>
<br />
</center>
<center>
<table>
<tr>
<td align="right">
<asp:Label ID="lblproject" runat="server" Text="Project :" Style="font-size: 18px"
Font-Bold="True" Font-Size="Medium"></asp:Label>
</td>
<td align="left">
<asp:DropDownList ID="ddlproject" runat="server" AutoPostBack="True" TabIndex="1"
Font-Bold="True" Font-Size="Medium">
<asp:ListItem Text="---- Select ----" Value="0"></asp:ListItem>
<asp:ListItem Text="Affordable Housing Program (AHP)" Value="1"></asp:ListItem>
<asp:ListItem Text="Beneficiary Led Construction (BLC)" Value="2"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
</table>
<br />
<div id="AHP" runat="server">
<asp:UpdatePanel ID="upd" runat="server" UpdateMode="conditional" ChildrenAsTriggers="true">
<%--<Triggers>
<asp:PostBackTrigger ControlID="btnSave" />
</Triggers>--%>
<ContentTemplate>
<center>
<fieldset id="Fieldset1" runat="server" style="width: 1000px;">
<table border="1" style="width: 1000px; background-color: #FFFFE0">
<tr>
<td align="center" colspan="4">
<asp:Label Style="font-family: Arial; color: Blue; text-decoration: underline; font-size: 12px"
runat="server" ID="lbld" Text="Affordable Housing Program (AHP) Project" Font-Italic="False"
Font-Size="Larger" Font-Underline="True"></asp:Label>
</td>
</tr>
<tr>
<td colspan="1" align="right">
<asp:Label ID="lblnohouses" runat="server" Text="01-No. of houses proposed for construction :"></asp:Label>
</td>
<td>
<table>
<tr>
<td align="center">
<asp:Label ID="Label1" runat="server" Text="SC" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label3" runat="server" Text="ST" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label4" runat="server" Text="GEN" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label5" runat="server" Text="MINO" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label6" runat="server" Text="TOTAL" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
</tr>
<tr>
<td style="vertical-align: top;">
<asp:TextBox ID="txtsc" runat="server" Style="width: 50px; border-radius: 2px;" TabIndex="1"
ToolTip="Enter SC Value" onkeypress="return isNumber(event)" AutoPostBack="True"></asp:TextBox>
</td>
<td style="vertical-align: top;">
<asp:TextBox ID="txtst" runat="server" Style="width: 50px; border-radius: 2px;" TabIndex="2"
ToolTip="Enter ST Value" onkeypress="return isNumber(event)" AutoPostBack="True"></asp:TextBox>
</td>
<td style="vertical-align: top;">
<asp:TextBox ID="txtgen" runat="server" Style="width: 50px; border-radius: 2px;"
TabIndex="3" ToolTip="Enter General Value" onkeypress="return isNumber(event)"
AutoPostBack="True"></asp:TextBox>
</td>
<td style="vertical-align: top;">
<asp:TextBox ID="txtMino" runat="server" Style="width: 50px; border-radius: 2px;"
TabIndex="4" ToolTip="Enter Minority Value" onkeypress="return isNumber(event)"
AutoPostBack="True"></asp:TextBox>
</td>
<td style="vertical-align: top;">
<asp:TextBox ID="txthousesTotal" runat="server" Style="width: 50px; border-radius: 2px;"
TabIndex="5" ToolTip="Total Value of (SC+ST+Gen+Mino)" Enabled="false" BackColor="#CCFFFF"></asp:TextBox>
</td>
</tr>
</table>
</td>
<td colspan="1" align="right">
<asp:Label ID="lbllanddetails" runat="server" Text="02-Land Details :"></asp:Label>
</td>
<td align="left">
<table>
<tr>
<td align="center">
<asp:Label ID="Label7" runat="server" Text="Area Name" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label12" runat="server" Text="Ward No." Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label8" runat="server" Text="Survey No." Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label9" runat="server" Text="Extent (in acres)" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label10" runat="server" Text="Ownership" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
</tr>
<tr>
<td align="center">
<asp:TextBox ID="txtareaward" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="6" ToolTip="Enter Area Name"></asp:TextBox>
</td>
<td>
<asp:DropDownList ID="ddlwardno" runat="server" Style="width: 80px; border-radius: 2px;"
TabIndex="7" ToolTip="Select the Ward No.">
</asp:DropDownList>
</td>
<td align="center">
<asp:TextBox ID="txtsyno" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="8" ToolTip="Enter Site No."></asp:TextBox>
</td>
<td align="center">
<asp:TextBox ID="txtExtent" runat="server" AutoPostBack="True" Style="width: 60px;
border-radius: 2px;" TabIndex="9" ToolTip="Enter Extent (in acres)"></asp:TextBox>
</td>
<td align="center">
<asp:DropDownList ID="ddlownership" runat="server" Style="width: 80px; border-radius: 2px;"
TabIndex="10" ToolTip="Select type of OwnerShip">
<asp:ListItem Text="-- Select --" Value="0"></asp:ListItem>
<asp:ListItem Text="Government" Value="1"></asp:ListItem>
<asp:ListItem Text="ULB Owned" Value="2"></asp:ListItem>
<asp:ListItem Text="Private(Purchased)" Value="3"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblstructure" runat="server" Text="03-Structure :"></asp:Label>
</td>
<td align="left">
<asp:DropDownList ID="ddlstructure" runat="server" AutoPostBack="True" ToolTip="Select your Choice"
Style="width: 130px; border-radius: 2px;" TabIndex="11">
<asp:ListItem Text="-- Select --" Value="0"></asp:ListItem>
<asp:ListItem Text="GF" Value="1"></asp:ListItem>
<asp:ListItem Text="G+1" Value="2"></asp:ListItem>
<asp:ListItem Text="G+2" Value="3"></asp:ListItem>
<asp:ListItem Text="G+3" Value="4"></asp:ListItem>
<asp:ListItem Text="Above G+3" Value="5"></asp:ListItem>
</asp:DropDownList>
<asp:TextBox ID="txtstructure" runat="server" placeholder="Above G+3 (Specify)" Style="width: 128px;
border-radius: 2px; margin-top: 2px;" Visible="false" TabIndex="12"></asp:TextBox>
</td>
<td align="right">
<asp:Label ID="lblcarpet" runat="server" Text="04-Carpet area of DU (in sq.mt):"></asp:Label>
</td>
<td align="left">
<asp:TextBox ID="txtcarpetarea" runat="server" Style="width: 128px; border-radius: 2px;"
TabIndex="13"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblplanning" runat="server" Text="05-Whether land comes under the purview of urban/planning area :"></asp:Label>
</td>
<td align="left">
<asp:RadioButtonList ID="Rblplanning" runat="server" RepeatDirection="Horizontal"
Font-Names="Arial" Font-Size="10pt" AutoPostBack="true" TabIndex="14" ToolTip="Select Planning Area">
<asp:ListItem Text="Yes" Value="Y" Selected="true"></asp:ListItem>
<asp:ListItem Text="No" Value="N"></asp:ListItem>
</asp:RadioButtonList>
</td>
<td align="right">
<asp:Label ID="lbltypebenf" runat="server" Text="06-Type of beneficiaries:"></asp:Label>
</td>
<td align="left">
<asp:DropDownList ID="ddlbenf" runat="server" Style="width: 360px; border-radius: 2px;"
TabIndex="15" ToolTip="Select type of Beneficiaries">
<asp:ListItem Text="-- Select --" Value="0"></asp:ListItem>
<asp:ListItem Text="Below poverty line-BPL (Below Rs.87600 PA)" Value="1"></asp:ListItem>
<asp:ListItem Text="Economically Weaker Sections-EWS (Above Rs.87600 and below Rs.3 lakh)"
Value="2"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblunitcost" runat="server" Text="07-Unitcost (Rs. In lakhs):"></asp:Label>
</td>
<td align="left">
<asp:TextBox ID="txtunitcost" runat="server" TabIndex="16" ToolTip="Enter Unitcost"
Style="width: 128px; border-radius: 2px;"></asp:TextBox>
<asp:Label ID="Label14" runat="server" Text="Eg: 4.0 , 4.21 , 4.222 " ForeColor="Red"></asp:Label>
</td>
<td align="right">
<asp:Label ID="lblschedule" runat="server" Text="08-Schedule of rate adopted :"></asp:Label>
</td>
<td align="left">
<asp:TextBox ID="txtschedule" runat="server" Style="width: 128px; border-radius: 2px;"
TabIndex="17" ToolTip="Enter Schedule of rate adopted"></asp:TextBox>
<asp:Label ID="Label26" runat="server" Text="Eg: 2017-2018 , 2018-2019 " ForeColor="Red"></asp:Label>
</td>
</tr>
</table>
<br />
<table border="1" style="width: 1000px; background-color: #FFFFE0">
<tr>
<td align="right">
<asp:Label ID="lblucincludes" runat="server" Text="09-UnitCost Includes (Rs. In lakh):"></asp:Label>
</td>
<td align="left">
<table>
<tr>
<td align="right">
 
</td>
<td align="center">
<asp:Label ID="Label11" runat="server" Text="SC/ST" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<%--<td align="center">
<asp:Label ID="Label12" runat="server" Text="ST" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>--%>
<td align="center">
<asp:Label ID="Label13" runat="server" Text="GEN/MINO" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<%--<td align="center">
<asp:Label ID="Label14" runat="server" Text="MINO" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>--%>
<td align="center">
<asp:Label ID="Label15" runat="server" Text="TOTAL" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblGOKSubsidy" runat="server" Text="GOK Subsidy" Font-Italic="True"
Font-Bold="true" Style="font-size: 12px; color: #6E7B8B"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtGOKSCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="18" ToolTip="Enter GOK SC/ST Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtGOKST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="17" ToolTip="Enter GOK ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtGOKGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="19" ToolTip="Enter GOK GEN/MINO Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtGOKOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="18" ToolTip="Enter GOK Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtGOKSCSTGenOtherstot" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="20" ToolTip="GOK Total Value" Enabled="false" AutoPostBack="True" BackColor="#CCFFFF"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblGOISubsidy" runat="server" Text="GOI Subsidy" Font-Italic="True"
Style="font-size: 12px; color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtGOISCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="21" ToolTip="Enter GOI SC/ST Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtGOIST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="19" ToolTip="Enter GOI SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtGOIGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="22" ToolTip="Enter GOI GEN/MINO Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtGOIOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="20" ToolTip="Enter GOI Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtGOISCSTGenOtherstot" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="23" ToolTip="GOK Total Value" Enabled="false" BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblBenfCont" runat="server" Text="Benf. Contribution" Font-Italic="True"
Style="font-size: 12px; color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtBenfContSCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="24" ToolTip="Enter Benf. Contribution SC/ST Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtBenfContST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="21" ToolTip="Enter Benf. Contribution SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtBenfContGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="25" ToolTip="Enter Benf. Contribution GEN/MINO Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtBenfContOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="22" ToolTip="Enter Benf. Contribution Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtBenfContSCSTGenOtherstot" runat="server" Style="width: 60px;
border-radius: 2px;" TabIndex="26" ToolTip="GOK Total Value" Enabled="false"
BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblulbshare" runat="server" Text="ULB Share (Housing)" Font-Italic="True"
Style="font-size: 12px; color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtulbshareSCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="27" ToolTip="Enter ULB Share (Housing) SC/ST Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtulbshareST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="23" ToolTip="Enter ULB Share (Housing) ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtulbshareGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="28" ToolTip="Enter ULB Share (Housing) GEN/MINO Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtulbshareOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="24" ToolTip="Enter ULB Share (Housing) Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtulbshareSCSTGenOtherstot" runat="server" Style="width: 60px;
border-radius: 2px;" TabIndex="29" ToolTip="GOK Total Value" Enabled="false"
BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblbankloan" runat="server" Text="Bank Loan" Font-Italic="True" Style="font-size: 12px;
color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtbankloanSCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="30" ToolTip="Enter Bank Loan SC/ST Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtbankloanST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="25" ToolTip="Enter Bank Loan SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtbankloanGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="31" ToolTip="Enter Bank Loan GEN/MINO Value" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtbankloanOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="26" ToolTip="Enter Bank Loan Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtbankloanSCSTGenOtherstot" runat="server" Style="width: 60px;
border-radius: 2px;" TabIndex="32" ToolTip="GOK Total Value" Enabled="false"
BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblgrdtot" runat="server" Text="Grand Total" Font-Italic="True" Style="font-size: 12px;
color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtgrdtotscst" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="33" ToolTip="Grand Total SC/ST Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtgrdtotst" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="42" ToolTip="Grand Total SC/ST Value" Enabled="false"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtgrdtotgenothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="34" ToolTip="Grand Total GEN/MINO Value" Enabled="false" BackColor="#CCFFFF"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtgrdtotothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="43" ToolTip="Grand Total Gen/Others Value" Enabled="false"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtgrdtotscstgenothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="35" ToolTip="Grand Total Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
</tr>
</table>
</td>
<td align="right">
<asp:Label ID="Label2" runat="server" Text="10-Housing Cost (Rs. In lakh):"></asp:Label>
</td>
<td align="left">
<table>
<tr>
<td align="right">
 
</td>
<td align="center">
<asp:Label ID="Label16" runat="server" Text="SC/ST" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<%--<td align="center">
<asp:Label ID="Label17" runat="server" Text="ST" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>--%>
<td align="center">
<asp:Label ID="Label18" runat="server" Text="GEN/MINO" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<%--<td align="center">
<asp:Label ID="Label19" runat="server" Text="MINO" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>--%>
<td align="center">
<asp:Label ID="Label20" runat="server" Text="TOTAL" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblpcgok" runat="server" Text="GOK Subsidy" Font-Italic="True" Style="font-size: 12px;
color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtpcGOKSCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="36" ToolTip="Enter GOK SC/ST Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtpcGOKST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="27" ToolTip="Enter GOK SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtpcGOKGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="37" ToolTip="Enter GOK GEN/MINO Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtpcGOKOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="28" ToolTip="Enter GOK Gen/Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtpcGOKTotal" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="38" ToolTip="GOK Total Value" Enabled="false" BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblpcgoi" runat="server" Text="GOI Subsidy" Font-Italic="True" Style="font-size: 12px;
color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtpcGOISCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="39" ToolTip="Enter GOI SC/ST Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtpcGOIST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="30" ToolTip="Enter GOI SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtpcGOIGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="40" ToolTip="Enter GOI GEN/MINO Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtpcGOIOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="31" ToolTip="Enter GOI Gen/Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtpcGOITotal" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="41" ToolTip="GOI Total Value" Enabled="false" BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblBenfContribution" runat="server" Text="Benf. Contribution" Font-Italic="True"
Style="font-size: 12px; color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtbenfcontriscst" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="42" ToolTip="Enter Benf. Contribution SC/ST Value" Enabled="false"
BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtbenfcontrist" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="33" ToolTip="Enter Benf. Contribution SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtbenfcontrigenothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="43" ToolTip="Enter Benf. Contribution GEN/MINO Value" Enabled="false"
BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtbenfcontriothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="34" ToolTip="Enter Benf. Contribution Gen/Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtbenfcontritotal" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="44" ToolTip="Total Benf. Contribution Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lbltownshare" runat="server" Text="ULB Share (Housing)" Font-Italic="True"
Style="font-size: 12px; color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txttownSCST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="45" ToolTip="Enter ULB Share (Housing) SC/ST Value" Enabled="false"
BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txttownST" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="36" ToolTip="Enter ULB Share (Housing) SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txttownGenothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="46" ToolTip="Enter ULB Share (Housing) GEN/MINO Value" Enabled="false"
BackColor="#CCFFFF" AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txttownothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="37" ToolTip="Enter ULB Share (Housing) Gen/Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txttowntotal" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="47" ToolTip="Total ULB Share (Housing) Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblbkloan" runat="server" Text="Bank Loan" Font-Italic="True" Style="font-size: 12px;
color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtbkloanscst" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="48" ToolTip="Enter Bank Loan SC/ST Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtbkloanst" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="39" ToolTip="Enter Bank Loan SC/ST Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtbkloangenothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="49" ToolTip="Enter Bank Loan GEN/MINO Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtbkloanothers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="40" ToolTip="Enter Bank Loan Gen/Others Value"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtbkloantotal" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="50" ToolTip="Total Bank Loan Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblgrandtot" runat="server" Text="Grand Total" Font-Italic="True"
Style="font-size: 12px; color: #6E7B8B" Font-Bold="true"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtgrandtotscst" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="51" ToolTip="Grand Total SC/ST Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtgrandtotst" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="42" ToolTip="Grand Total SC/ST Value" Enabled="false"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtgrandtotGenOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="52" ToolTip="Grand Total GEN/MINO Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
<%--<td>
<asp:TextBox ID="txtgrandtotOthers" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="43" ToolTip="Grand Total Gen/Others Value" Enabled="false"></asp:TextBox>
</td>--%>
<td>
<asp:TextBox ID="txtgrandtot" runat="server" Style="width: 60px; border-radius: 2px;"
TabIndex="53" ToolTip="Grand Total Value" Enabled="false" BackColor="#CCFFFF"
AutoPostBack="True"></asp:TextBox>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<table border="1" style="width: 1000px; background-color: #FFFFE0">
<tr>
<td align="right">
<asp:Label ID="lblhousetype" runat="server" Text="11-Infrastructure Cost(Rs. In lakh) :"></asp:Label>
</td>
<td align="left">
<table>
<tr>
<td align="center">
<asp:Label ID="Label24" runat="server" Text="Per Acre" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label25" runat="server" Text="Total Infra.Cost (Rs. In lakh)" Font-Bold="true"
Style="font-size: 10px; color: #6E7B8B"></asp:Label>
</td>
<td align="center">
<asp:Label ID="Label17" runat="server" Text="Total Project Cost (Rs. In lakh)" Font-Bold="true"
Style="font-size: 10px; color: #6E7B8B"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="txtperacre" MaxLength="3" runat="server" Style="width: 80px; border-radius: 2px;"
TabIndex="53" ToolTip="Per Acre" AutoPostBack="True"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txttotal" runat="server" Style="width: 80px; border-radius: 2px;"
TabIndex="54" ToolTip="Total" Enabled="false" BackColor="#CCFFFF"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txttotalprojectcost" runat="server" Style="width: 80px; border-radius: 2px;"
ToolTip="Total Project Cost" Enabled="false" BackColor="#CCFFFF"></asp:TextBox>
</td>
</tr>
</table>
</td>
<td align="right">
<asp:Label ID="lblinfrastructurecost" runat="server" Text="12-Sources for Infrastructure cost:"></asp:Label>
</td>
<td align="left">
<table>
<tr>
<td align="center">
<asp:Label ID="Label21" runat="server" Text="ULB" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td>
</td>
<td align="center">
<asp:Label ID="Label22" runat="server" Text="Beneficiaries" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
<td>
</td>
<td align="center">
<asp:Label ID="Label23" runat="server" Text="Others" Font-Bold="true" Style="font-size: 10px;
color: #6E7B8B"></asp:Label>
</td>
</tr>
<tr>
<%--<td>
<asp:TextBox ID="txtulb" MaxLength="3" runat="server" Style="width: 100px; border-radius: 2px;"
TabIndex="47" ToolTip="ULB"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtbenf" MaxLength="3" runat="server" Style="width: 100px; border-radius: 2px;"
TabIndex="48" ToolTip="Beneficiaries"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtothers" MaxLength="3" runat="server" Style="width: 100px; border-radius: 2px;"
TabIndex="49" ToolTip="Others"></asp:TextBox>
</td>--%>
<td align="left">
<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal"
Font-Names="Arial" Font-Size="10pt" TabIndex="55">
<asp:ListItem Text="Yes" Value="Y"></asp:ListItem>
<asp:ListItem Text="No" Value="N" Selected="true"></asp:ListItem>
</asp:RadioButtonList>
</td>
<td>
</td>
<td align="left">
<asp:RadioButtonList ID="RadioButtonList2" runat="server" RepeatDirection="Horizontal"
Font-Names="Arial" Font-Size="10pt" TabIndex="56">
<asp:ListItem Text="Yes" Value="Y"></asp:ListItem>
<asp:ListItem Text="No" Value="N" Selected="true"></asp:ListItem>
</asp:RadioButtonList>
</td>
<td>
</td>
<td align="left">
<asp:RadioButtonList ID="RadioButtonList3" runat="server" RepeatDirection="Horizontal"
Font-Names="Arial" Font-Size="10pt" TabIndex="57">
<asp:ListItem Text="Yes" Value="Y"></asp:ListItem>
<asp:ListItem Text="No" Value="N" Selected="true"></asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lbltechnologyadopted" runat="server" Text="13-Technology adopted :"></asp:Label>
</td>
<td align="left">
<asp:TextBox ID="txttechadopted" runat="server" Style="width: 128px; border-radius: 2px;"
TabIndex="58"></asp:TextBox>
</td>
<td align="right">
<asp:Label ID="lblyear" runat="server" Text="14-Availability of Target :"></asp:Label>
</td>
<td>
<table>
<tr>
<td align="left">
<asp:RadioButtonList ID="rblavailTarget" runat="server" RepeatDirection="Horizontal"
Font-Names="Arial" Font-Size="10pt" AutoPostBack="true" TabIndex="59">
<asp:ListItem Text="Yes" Value="Y" Selected="true"></asp:ListItem>
<asp:ListItem Text="No" Value="N"></asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblscst" runat="server" Text="SC/ST" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:DropDownList ID="ddlschemescst" runat="server" TabIndex="60" Style="width: 130px;
border-radius: 2px;">
<asp:ListItem Text="-- Scheme --" Value="0"></asp:ListItem>
<asp:ListItem Text="Dr.B.R Ambedkar Nivas Yojana Urban" Value="45"></asp:ListItem>
<asp:ListItem Text="Devraj Urs Housing Scheme-Urban" Value="48"></asp:ListItem>
</asp:DropDownList>
</td>
<td>
<asp:DropDownList ID="ddlseriesscst" runat="server" TabIndex="61" Style="width: 130px;
border-radius: 2px;">
<asp:ListItem Text="-- Series Year --" Value="0"></asp:ListItem>
<asp:ListItem Text="2016-2017" Value="26"></asp:ListItem>
<asp:ListItem Text="2017-2018" Value="27"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblGenOthers" runat="server" Text="Gen/Others" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:DropDownList ID="ddlschemegenothers" runat="server" TabIndex="62" Style="width: 130px;
border-radius: 2px;">
<asp:ListItem Text="-- Scheme --" Value="0"></asp:ListItem>
<asp:ListItem Text="Vajpayee Urban Housing Scheme_Regular" Value="31"></asp:ListItem>
<asp:ListItem Text="Devraj Urs Housing Scheme-Urban" Value="48"></asp:ListItem>
</asp:DropDownList>
</td>
<td>
<asp:DropDownList ID="ddlseriesgenothers" runat="server" TabIndex="63" Style="width: 130px;
border-radius: 2px;">
<asp:ListItem Text="-- Series Year --" Value="0"></asp:ListItem>
<asp:ListItem Text="2016-2017" Value="26"></asp:ListItem>
<asp:ListItem Text="2017-2018" Value="27"></asp:ListItem>
</asp:DropDownList>
</td>
<td>
 
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblaccount" runat="server" Text="15-Whether the said project and beneficiary list is approved by ashraya commitee:"></asp:Label>
</td>
<td align="left">
<table>
<tr>
<td align="left">
<asp:RadioButtonList ID="Rblashcommitee" runat="server" RepeatDirection="Horizontal"
Font-Names="Arial" Font-Size="10pt" AutoPostBack="True" TabIndex="64">
<asp:ListItem Text="Yes" Value="Y"></asp:ListItem>
<asp:ListItem Text="No" Value="N" Selected="true"></asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblrefdate" runat="server" Text="Ref. Date" Font-Italic="True" Style="font-size: 10px;"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtRefDate" runat="server" Style="width: 100px;"></asp:TextBox>
<asp:ImageButton ID="ImgDate2" runat="server" AlternateText="Click to show calendar"
ImageUrl="~/Images/date.gif" __designer:wfdid="w6"></asp:ImageButton>
<Ajax:CalendarExtender ID="CalendarExtender1" runat="server" Format="dd/MM/yyyy"
PopupButtonID="ImgDate2" TargetControlID="txtRefDate" __designer:wfdid="w7">
</Ajax:CalendarExtender>
<Ajax:MaskedEditExtender ID="MaskedEditExtender1" runat="server" TargetControlID="txtRefDate"
InputDirection="LeftToRight" OnInvalidCssClass="MaskedEditError" OnFocusCssClass="MaskedEditFocus"
MessageValidatorTip="true" CultureName="en-GB" MaskType="Date" Mask="99/99/9999"
__designer:wfdid="w8">
</Ajax:MaskedEditExtender>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblchair" runat="server" Text="Chairman" Font-Italic="True" Style="font-size: 10px;"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtchairmen" runat="server" placeholder="Name" Style="width: 130px;
border-radius: 2px; margin-top: 2px;" Visible="false"></asp:TextBox>
</td>
<td align="right">
<asp:Label ID="lblmemsec" runat="server" Text="Member Secretary" Font-Italic="True"
Style="font-size: 10px;"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtmembersec" runat="server" placeholder="Name" Style="width: 130px;
border-radius: 2px; margin-top: 2px;" Visible="false"></asp:TextBox>
</td>
</tr>
</table>
</td>
<td align="right">
<asp:Label ID="lblhousescheme" runat="server" Text="16-Entry of 4B in PMAY MIS :"></asp:Label>
</td>
<td align="left">
<asp:RadioButtonList ID="rbl4BPMAYMIS" runat="server" RepeatDirection="Horizontal"
AutoPostBack="true" Font-Names="Arial" Font-Size="10pt" TabIndex="65">
<asp:ListItem Text="Yes" Value="Y" Selected="true"></asp:ListItem>
<asp:ListItem Text="No" Value="N"></asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
</table>
<br />
<table border="1" style="width: 1000px; background-color: #FFFFE0">
<tr>
<td align="right">
<asp:Label ID="lblattachments" runat="server" Text="17-Attachements(Duly signed by ULB officer) :"></asp:Label>
</td>
<td align="left">
<table>
<tr style="vertical-align: top">
<td align="right">
<asp:Label ID="lbllandrtc" runat="server" Text="Land RTC" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileLandRTC" runat="server" TabIndex="66" />
</td>
<td align="right">
<asp:Label ID="lbl6Certicationletters" runat="server" Text="6 Certification letters as per PMAY(U)"
Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="File6Certicationletters" runat="server" accept="application/vnd.pdf"
TabIndex="67" />
</td>
</tr>
<tr style="vertical-align: top">
<td align="right">
<asp:Label ID="lblAshrayaCommiteeResolution" runat="server" Text="Ashraya Commitee Resolution"
Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileAshrayaCommiteeResolution" runat="server" accept="application/vnd.pdf"
TabIndex="68" />
</td>
<td align="right">
<asp:Label ID="lblLayoutMap" runat="server" Text="Layout MAP" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileLayoutMap" runat="server" accept="application/vnd.pdf" TabIndex="69" />
</td>
</tr>
<tr style="vertical-align: top">
<td align="right">
<asp:Label ID="lblBenfList" runat="server" Text="Beneficiary List" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileBenfList" runat="server" accept="application/vnd.pdf" TabIndex="70" />
</td>
<td align="right">
<asp:Label ID="lblHousePlanDesign" runat="server" Text="House Plan and Design" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileHousePlanDesign" runat="server" accept="application/vnd.pdf"
TabIndex="71" />
</td>
</tr>
<tr style="vertical-align: top">
<td align="right">
<asp:Label ID="lblSigned7B" runat="server" Text="Signed Copy of 7B" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileSigned7B" runat="server" accept="application/vnd.pdf" TabIndex="72" />
</td>
<td align="right">
<asp:Label ID="lblEstimationCopy" runat="server" Text="Estimation Copy" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileEstimationCopy" runat="server" accept="application/vnd.pdf"
TabIndex="73" />
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="lblStructuralDrawing" runat="server" Text="Structural Drawing" Font-Italic="True"></asp:Label>
</td>
<td>
<asp:FileUpload ID="FileStructuralDrawing" runat="server" accept="application/vnd.pdf"
TabIndex="74" />
</td>
<td>
 
</td>
<td>
 
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<center>
<asp:Button ID="btnSave" runat="server" TabIndex="75" Text="Save" ToolTip="Click here to Save"
OnClientClick="return Validate();" />
<asp:Button ID="btnCancel" runat="server" TabIndex="76" Text="Cancel" ToolTip="Click here to Cancel" />
<%--<asp:Label ID="lblmsg" runat="server" ForeColor="Green" Font-Bold="true" Font-Size="10pt"></asp:Label>--%>
</center>
</fieldset>
</center>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="btnSave"/>
</Triggers>
</asp:UpdatePanel>
</div>
</center>
</asp:Content>
Thank you all
Saturday, April 21, 2018 5:27 AM
All replies
-
User-492460945 posted
Hello stpn,
It seems you do not have server side button click event. Usually this error occurs when we use Response.End, Response.Redirect etc., which are coded in server side event. So Can you please provide the save click event coded in C#?
Thanks,
RajeshV
Monday, April 23, 2018 12:39 PM -
User-1838255255 posted
Hi stpn,
According to your description and code, I don't see any click event code of your button in server side, so I am not clear where you get this exception message?
Also i notice the error message, i think it isn't a complete error message, so can not sure where or which line code caused this issue, i hope you could post more related message for us to learn.
Best Regards,
Eric Du
Tuesday, April 24, 2018 2:56 AM