Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Go to the source files folder and find hidden .VS folder

  2. There you can find something like

  3. Open config folder and find applicationhost.config file

  4. Open it and find <system.webServer><modules> section

  5. At the bottom of <modules> add this lines. Make sure that you didn’t add it somewhere else

    Code Block
    <add name="StreamTagFilter-2.0" type="Utility.IIS.StreamTagFilterModule, StreamTagFilter.NET.2.0, Version=1.0.5.0, Culture=neutral, PublicKeyToken=d3d707ec692e4024" preCondition="runtimeVersionv2.0" />
    <add name="StreamTagFilter-4.0" type="Utility.IIS.StreamTagFilterModule, StreamTagFilter.NET.4.0, Version=1.0.6.2, Culture=neutral, PublicKeyToken=d3d707ec692e4024" preCondition="runtimeVersionv4.0" />
    
  6. The first line designed for .NET 2.0 - 3.9 and is outdated. The second line is for .NET 4.0 and higher. Make sure that the version in the lines is the same as installed version of StreamTagFilter in this example it is 1.0.6.2

  7. Save it and re-run the application.

  8. If this fails, try Option #2

...

Option #2 (newest IIS Express versions)….

Try to run application first time and get HTML only page. This will initiate IIS Express settings. If you see the blank pages try this:

  1. Go to C:\Users\<username>\Documents\IISExpress\config and adjust applicationhost.config in the same way as above:

    1. Open applicationhost.config and find <system.webServer><modules> section

      Code Block
      <add name="StreamTagFilter-2.0" type="Utility.IIS.StreamTagFilterModule, StreamTagFilter.NET.2.0, Version=1.0.5.0, Culture=neutral, PublicKeyToken=d3d707ec692e4024" preCondition="runtimeVersionv2.0" />
      <add name="StreamTagFilter-4.0" type="Utility.IIS.StreamTagFilterModule, StreamTagFilter.NET.4.0, Version=1.0.6.2, Culture=neutral, PublicKeyToken=d3d707ec692e4024" preCondition="runtimeVersionv4.0" />
  2. The first line designed for .NET 2.0 - 3.9 and is outdated. The second line is for .NET 4.0 and higher. Make sure that the version in the lines is the same as installed version of StreamTagFilter in this example it is 1.0.6.2

  3. Save it and re-run the application.