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>Firs t Name</td>" & _
"<td align=left>Last Name</td>" & _
"<td align=left>Sala ry</td>"
tstrHTML += "<tr><td align=left>Binn y</td>" & _
"<td align=left>Fede ral</td>" & _
"<td align=left>2300 00</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
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>Firs t Name</td>" & _
"<td align=left>Last Name</td>" & _
"<td align=left>Sala ry</td>"
tstrHTML += "<tr><td align=left>Binn y</td>" & _
"<td align=left>Fede ral</td>" & _
"<td align=left>2300 00</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
Comment