1

I have following problem.

Example site http://eisk.apphb.com/web-form-samples/listing-page.aspx

My c# application has to read data from gridview, but only for specific supervisor, so i need to change programmatically value in drop down list.

I have problem with change this value and get site with actually data in grid view.

Please help me solve this case.

Ashraf Alam
  • 3,500
  • 32
  • 31

2 Answers2

1

I did something related in the past using Selenium, but now the changed the API and it's not so easy as it was before. (They merged Selenium with Web Driver)

You can see more about that in here:

http://www.seleniumhq.org/docs/05_selenium_rc.jsp

You can also use Watin to do the same.

http://www.codeproject.com/Articles/17064/WatiN-Web-Application-Testing-In-NET

Thiago Custodio
  • 17,332
  • 6
  • 45
  • 90
1

You could use an HttpWebRequest to download the site content then use HtmlAgilityPack to parse the HTML and get the data.

CSharpYouDull
  • 229
  • 1
  • 4