Server Application Unavailable
-
Error msg that I get now running my ASPX page (With graphics stuff in created in Dreamweaver) All was running fine. Had .NET installed. All working. Had to change the access permissions on my folders to allow IUSER_SERVER access so that my DB's will work. (WHICH they now do) BUT since I have changed my access permissions, my ASPX page just gives me this error msg. Any ideas? What would the access permissions have to do with this and how to fix it? ERROR : Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur. CODE: ASPX Page <%@ Page Language="C#" %> <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %> <%@ Register TagPrefix="Portal" TagName="ImageCanvas" Src="ImageCanvas.ascx" %> <%@ import Namespace="System.Drawing" %> void Page_Load(Object sender, EventArgs e) { Pen newpen = new Pen(Color.Black); Bitmap bitmap4 = new Bitmap(300,300); Graphics g4 = Graphics.FromImage(bitmap4); g4.Clear(Color.White); g4.DrawLine(newpen,5,5,20,20); g4.DrawLine(newpen,5,5,50,5); ImageCanvas4.bitmap = bitmap4; }
And still more info CODE : ASCX PAGE <%@ Control Language="C#" %> <%@ import Namespace="System.Drawing" %> <%@ import Namespace="System.Drawing.Imaging" %> public Bitmap bitmap; public ContentType ImageType = ContentTyp</x-turndown>