Monday, January 28, 2019

Adds a cookieless session ID to the virtual path

HttpResponse.ApplyAppPathModifier(String) Method



string urlConverted = Response.ApplyAppPathModifier("TestPage.aspx"); hlTest1.NavigateUrl = urlConverted;

Sunday, January 27, 2019

WebRequest authentication 401

Set location in web.config file to service url page. 

< location path="aspxpage.aspx">
< system.webServer>
        < security>
          < authentication>
            <anonymousauthentication enabled="true">
                  <windowsauthentication enabled="false">
                   </windowsauthentication>
            < /anonymousauthentication>
          </authentication>
        </security>
</system.webServer>

</location>