c# - NON-MVC application below MVCsite -
we have simple (not mvc) asp.net c# web form deployed application our web server. works perfectly.
an mvc application added our web server using ip address , iis site. want above web form exist application within/below mvc site. however, when try access web form @ https://mvcsite/webform.aspx get:
the codedom provider type "microsoft.codedom.providers.dotnetcompilerplatform.csharpcodeprovider, microsoft.codedom.providers.dotnetcompilerplatform, version=1.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35" not located.
with reference to:
<system.codedom> <compilers> <compiler language="c#;cs;csharp" extension=".cs" type="microsoft.codedom.providers.dotnetcompilerplatform.csharpcodeprovider, microsoft.codedom.providers.dotnetcompilerplatform, version=1.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35" warninglevel="4" compileroptions="/langversion:6 /nowarn:1659;1699;1701" /> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="microsoft.codedom.providers.dotnetcompilerplatform.vbcodeprovider, microsoft.codedom.providers.dotnetcompilerplatform, version=1.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35" warninglevel="4" compileroptions="/langversion:14 /nowarn:41008 /define:_mytype=\"web\" /optioninfer+" /> </compilers>
in web.config file mvc site.
we have tried adding
<system.codedom></system.codedom>
and
<system.codedom> <compilers></compilers> </system.codedom>
in web form web.config , neither resolved issue.
any suggestions - or outright fix - appreciated.
thanks,
Comments
Post a Comment