Parser Error

  By Usman Jafar   Posted on May-28-2018   700

.Net

If anyone is facing the runtime error named as "Parser Error" .

Then simply go to your web.config file and make sure that in "System.web" tag have only following attributes.

 <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <sessionState timeout="60" />
    <httpRuntime targetFramework="4.5" maxRequestLength="8000000" requestLengthDiskThreshold="81920" />
    <customErrors mode="Off" />
    <trust level="Full" />
  </system.web>

 

If anyone is facing the runtime error named as "Parser Error" .

Then simply go to your web.config file and make sure that in "System.web" tag have only following attributes.

 <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <sessionState timeout="60" />
    <httpRuntime targetFramework="4.5" maxRequestLength="8000000" requestLengthDiskThreshold="81920" />
    <customErrors mode="Off" />
    <trust level="Full" />
  </system.web>

 

By  usmanjafar15-000001    28-May-2018 Views  700



You may also read following recent Post

Recent Column What are 3 C
192  By
Recent Column what is .net
418  By