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 &amp;quot;m/d/yyyy&amp;quot;" data-val-regex-pattern="[0-9]*[0-9]/[0-9]*[0-9]/[0-9]{4}" data-val-required="end date must in format &amp;quot;m/d/yyyy&amp;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:

enter image description here

the network tab show network communication. within can select request , view headers should include form data.

this gives bit more info being sent


Comments

Popular posts from this blog

Pull out data related to my apps from Android Play Store and iOS App Store -

Change php variable from jquery value using ajax (same page) -

How can I fetch data from a web server in an android application? -