1

I read of a similar issue at Asp.Net Forms Authentication when using iPhone UIWebView where using a UIWebView is not recognized by asp.net 4 browser capabilities. My web site is not functioning from an iPhone/iPad such as the login at https://www.nc-software.com/login.aspx due to this.

Can someone please provide the exact info I need to create in an App_Browsers folder please?

Thank you.

Community
  • 1
  • 1
Neal
  • 9,487
  • 15
  • 58
  • 101

1 Answers1

3

Here is what I ended up using for my custom browser definition named "generic2.browser" placed in App_Browsers to get my UIWebView to work with asp.net 4 forms authentication.

<browsers>
  <browser refID="Mozilla" >
    <capabilities>
      <capability name="ecmascriptversion"    value="3.0" />
      <capability name="javascript"           value="true" />
      <capability name="cookies"              value="true" />
    </capabilities>
  </browser>
</browsers>
Neal
  • 9,487
  • 15
  • 58
  • 101