I created a simple user control that displayed some images and it worked when I first visited the page, but when I left the page and came back I got a page not found error. I removed all of my code including the render override and I still have the same issue.
User control results in 404 on second visit
Hi Guys,
I created a simple user control that displayed some images and it worked when I first visited the page, but when I left the page and came back I got a page not found error. I removed all of my code including the render override and I still have the same issue.
My code now looks like this
using System.Web;
using System.Web.UI;
namespace DevGary
{
public partial class MaintainSections : System.Web.UI.UserControl
{
protected override void Render(HtmlTextWriter writer)
{
base.Render(writer);
}
}
}
is working on a reply...