Reputation: 379
i am geting runtime error when i run my asp.net project. the application also gives me warning in these line
<%@ Page Language="C#"
AutoEventWireup="true"
CodeFile="Default.aspx.cs"
Inherits="v_r_Default"
EnableTheming="false"
StylesheetTheme=""
Theme=""
%>
Warning :
Could not load file or assembly 'System.Drawing' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.
and also when i run the application then it gives me error like that.
plz help me...it is an online website... www.allcontact.com
thanx in advance
Upvotes: 0
Views: 588
Reputation: 3889
You should check if the version of the project / solution matches the version of the dlls you are using with the project.
Also check for valid references to all the libraries or binaries you are using in your project / solution.
Upvotes: 1