You can either use the Html Agility Pack which allows the document to be parsed and read.

Your other option is to use Regular Expressions to parse the response for what you need. You can use @"<input(.|\n)+?>" to start off with as the pattern. I'm really bad at RegEx so maybe someone else will be more help or you can find what you need from a google search.