How can I inspect the values of tags during the submit of a form using Chrome Dev Tools? -
during page's "dormant" state, can inspect values of tag entering id in chrome dev tools' console tab, so, e.g. tag name "begindate":
0) enter "begindate" in console tab 1) mash key
...and see whole shebang:
<input alt="date-us" data-val="true" data-val-regex="end date must in format &quot;m/d/yyyy&quot;" data-val-regex-pattern="[0-9]*[0-9]/[0-9]*[0-9]/[0-9]{4}" data-val-required="end date must in format &quot;m/d/yyyy&quot;" id="enddate" name="enddate" style="width: 164px;" type="text" value="5/14/2013" class="hasdatepicker">
so shows value, part i'm interested in, today's date.
what want inspect, though, being passed/posted when form's submit button pressed; believe be, in asp.net, contents of request object, how can see these vals using chrome dev tools?
i right-clicked in console , selected "log xmlhttprequests" , "preserve log upon navigation" but...are logged? if so, they? see nothing in console tab...
update
thanks david ziemann, here's see:
the network tab show network communication. within can select request , view headers should include form data.
Comments
Post a Comment