Showing posts with label Fiddler. Show all posts
Showing posts with label Fiddler. Show all posts
Friday, November 3, 2017
Fiddler Https Certificate issues
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, November 18, 2015
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
Tuesday, December 17, 2013
Wednesday, November 6, 2013
HTTP 304 - visibility
You will only see on the browsers network traffic- not Fiddler
Thursday, August 8, 2013
Fiddler is a lifesaver with silverlight problems
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:
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:
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);
}
Subscribe to:
Comments (Atom)


