Tuesday 20 November 2012

How to fix error "Unable to verify account information" on IPhone 5

I was setting up exchange email on IPhone 5 and was getting this annoying error message:
"Unable to veriry account information"
In my case I had to modify Server info and replace
http://owa.ServerName.com/exchange 
with
owa.ServerName.com/exchange 

Error message could be little more descriptive anyway...

Monday 19 November 2012

ASP.NET - How to fix error WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).

Watch this example online:
I have simple form with text field, required field validator and a button.
When I click the button I am getting error WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).



To fix it - add the following into web.config file
  <appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None"/>
  </appSettings>

Watch Online: