asp.net mvc jQuery $.post works but $.get doesn't
- by iboeno
Why would POST work but not GET?  I'm not using [AcceptVerbs(HttpVerbs.Post)].  I'm calling this:
public ActionResult GetTest(string key)
        {
            var test = new { HelpTest = key };
            return Json(test);
        }
And it works when I do this:  
$.post("/Home/GetTest", { key: options.key },
                        function(helpTest) {
                            alert(helpTest.HelpTest);
                        });  
But not this:  
$.get("/Home/GetTest", { key: options.key },
                            function(helpTest) {
                                alert(helpTest.HelpTest);
                            });  
Why would this be?  Using GET returns an XMLHttpRequest.status of 500. What am I confused about?