Developed a web application in ASP.Net (Framework 1.0), in which I have used public variable
which is defined in the aspx page and in the code behind will have some calculations and the
assign some value to that variable.
Example:
reports.aspx
.....
<TABLE cellSpacing="2" cellPadding="0" width="700" align="center">
<%=tstrHTML%>
</TABLE>
.....
reports.aspx.vb
private void displayReports()
{
tstrHTML = "<tr><td align=left>First Name</td>" & _
"<td align=left>Last Name</td>" & _
"<td align=left>Salary</td>"
tstrHTML += "<tr><td align=left>Binny</td>" & _
"<td align=left>Federal</td>" & _
"<td align=left>230000</td>"
}
The application was running fine for the last couple of years and all of a sudden having some
problem.
Can any one of you help me on figuring out this issue.
Thanks