I've done an web application, and I've almost removed all of the code (both .aspx and .aspx.cs) but Im still getting the error:
I really dont know what to do. I've followed the steps of the tutorial (first .aspx and .aspx.cs and then new web.config file) but cant solve the problem. I really dont understand this problem. So you can see, this my .aspx code (almost nothing!!!!! ( i commented almost all .cs code)
gdiplus.dll
Description: HTTP 500. Error processing request.
Stack Trace:
System.DllNotFoundException: gdiplus.dll
at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup (ulong&,System.Drawing.GdiplusStartupInput&,System.Drawing.GdiplusStartupOutput&)
at System.Drawing.GDIPlus..cctor () [0x00000]
I really dont know what to do. I've followed the steps of the tutorial (first .aspx and .aspx.cs and then new web.config file) but cant solve the problem. I really dont understand this problem. So you can see, this my .aspx code (almost nothing!!!!! ( i commented almost all .cs code)
Code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="login.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>PWS</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div id="topPanel">
<ul>
<li><a href="#">Contact</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">About</a></li>
<li class="active">Home</li>
</ul>
<a href="index.html">
<img src="http://forums.x10hosting.com/images/logo.gif" title="Trial Services" alt="Trial Services" width="230"
height="80" border="0" /></a>
</div>
<div id="bodyPanel">
<h2>
Login</h2>
<asp:Login ID="Login1" runat="server" OnAuthenticate="Login1_Authenticate"
Height="205px" Width="300px" style="text-align: center">
</asp:Login>
</div>
<div id="footerPanel">
<div id="footerbodyPanel">
<p class="copyright">
© all right reaserved</p>
<ul class="templateworld">
<li></li>
</ul>
<div id="footerhtmlPanel">
<a href="http://validator.w3.org/check?uri=referer" target="_blank">html</a></div>
<div id="footercssPanel">
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank">css</a></div>
</div>
</div>
</form>
</body>
</html>
Last edited: