using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Web.Configuration; namespace Test { public partial class UpdateConfig : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { try { } catch (Exception ex) { Response.Write("Exception: " + ex.Message); } } } }
I think you added <httpErrors errorMode="Custom" existingResponse="PassThrough"/> in <system.webserver> (web.config). Please remove this for a while so that you can see the actual error. After you get error you can search for actual error.
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)