0

I am looking for a firefox plugin that will look at a page and list the forms and the inputs (hidden, text, radiobuttons, checkboxes, etc) that will be submitted with a form submission. I would like to view these by name.

I am doing ASP MVC development with some very large complicated forms. currently, the most convenient way of getting a list of fields that will be submitted with a form submit is to submit the form and look at the fiddler traces. I would like instead, to render the page, then see a list of inputs and their names. (Because ASP MVC uses the name field for binding).

I am using asp mvc 2.

MedicineMan
  • 15,008
  • 32
  • 101
  • 146

1 Answers1

2

Use the Web Developer Toolbar.

In the Forms menu there is an option to View Form Information, which is what you want.

cbp
  • 25,252
  • 29
  • 125
  • 205