Problem : Pages that have always worked, don't load.
When selecting an item out of a list with each item refering to an url, nothing happens. This has always worked.
It can happen that it works for a while, but later it doesn't.
When the problem happens; there is no Postback. When debugging i could see that the page load is never accessed.
Can anyone help me with this annoying problem ?
Following is the code that is behind an item that can be clicked. :
.COL_ID].ToString();
HtmlTableRow rowSup = new HtmlTableRow();
HtmlTableCell cellSup = new HtmlTableCell();
string linkCap = tab.FullUrl + "?" + CAPID + "=" + row[CAPVO.COL_ID].ToString();
cellSup.InnerHtml =
"<a href=\"" + linkCap + "\">" + row[CAPVO.COL_NAME].ToString() + "</a>";
rowSup.Controls.Add(cellSup);
capTable.Controls.Add(rowSup);