Posted on: 6/8/2014 10:47:00 AM | Views : 343

Last year I wrote a simple ASP/C# website using dynamic creation of controls, but when I updated VS2013, my project started having problem with displaying controls.
The problem is as follows:
-On start, the page looks ok, but when I press any button (postback), the table on may page disappears, but the controls in cells are staying, but not in place because table disappeared, but one under the another. So the page breaks in half in my case.
It looks like this:
My Code:
public partial class _Default : System.Web.UI.Page { //-------------------------------------------------------------------------MAIN TABLE Table TblMainTop = new Table(); //TblMainTop // Contains TableRow TblRow_Top = new TableRow(); //Logo and login //MainTableCells in TblRow_Top TableCell TblcT_Logo = new T ...

Go to the complete details ...