Refresh . In current versions of Fiddler, simply right-click the column headers and select Customize Columns . From the drop-down list, select Session Timers and select ClientBeginRequest from the drop-down list.
The old way to do this is to use FiddlerScript. Click Rules> Configure Rules.
Inside the Handlers class, add the following script code:
public static BindUIColumn("BeginRequestTime", 60) function BeginRequestTime(oS: Session) { if (oS.Timers != null) { return oS.Timers.ClientBeginRequest.ToString(); } return String.Empty; }
Then just reload the SAZ file.
EricLaw Jul 31 '10 at 20:03 2010-07-31 20:03
source share