JsonRequestBehavior to AllowGet

This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet.

for the following code, Fix is hilighted below...

public JsonResult JsonData()
{
    SimpleBlogLink[] mylinks = GetAllLinks();
    return Json(mylinks, JsonRequestBehavior.AllowGet);
}