Showing posts with label Fiddler. Show all posts
Showing posts with label Fiddler. Show all posts

Wednesday, July 6, 2016

reset certificates for fiddler

since i cleared the cache I get all sorts of errors so I needed to do this

Wednesday, January 8, 2014

Cannot find proxy server (Chrome)

this should be (perhaps) unchecked


if Fiddler crashes this can be set and mess your settings- beware

Wednesday, November 6, 2013

HTTP 304 - visibility

You will only see on the browsers network traffic- not Fiddler

Monday, July 29, 2013

Restricting MVC to Particular HTTP Verbs

[HttpGet]
        public ActionResult HerbyList()

        {

This is a perfect place to use Fiddler's composer - to change a regular page from a get to a post to test

also the older syntax:

[AcceptVerbs(HttpVerbs.Post)] 


an important use for this is one view for a get with default info and the same view for post to get the updated values  - example:

    [HttpGet]
        public ActionResult Update()
        {
            BookModel bm = new BookModel();
            bm.Author = "default";
            bm.Title = "default";

            return View(bm);
        }

        [HttpPost]
        public ActionResult Update(BookModel b)
        {
            return View(b);
        }