Hii,
Thank you for posting this information.
I would like to add some more to this.
I face problem with remote that function not get executed when page comes from cache.
To execute validation function each time , need to mention
[OutputCache(Location = System.Web.UI.OutputCacheLocation.None, NoStore = true)]
in just above the validation function.
In above example like this
[OutputCache(Location = System.Web.UI.OutputCacheLocation.None, NoStore = true)]
public JsonResult IsUserNameExits(string Name)
{
}
commented on Nov 13 2011 10:17PM