I have started learning MVC2.
I developed a simple customer search screen with Jquery and Json calls. In debug mode everything works.
When i deployed to my local iis server and after configuring the app pools i got the app to run.
When i do the search nothing happens, it like the json call is not working and i dont get any errors either.
I have tried a lot of things - nothing seems to work.
e.g : $.getJSON("<% = ResolveUrl("~/ClientSelect/Search") %>"...
Has anyone else had this problem?
What works locally breaks once its deployed to a virtual directory - i am i doing something wrong here?
thanks
Updated!!
*****Solved: it was the 'ASP.NET v4.0' app pool using 'ApplicationPoolIdentity'. This identity does not have access to my SQL Server. Solved by setting this to LocalSystem.*****