client-side script in webbrowser control .net2.0

varvar

Member
Joined
Jun 8, 2006
Messages
10
Programming Experience
3-5
Working with .net WebBrowser control

I am navigating through WebBrowser to certain site. in this site when you change the color dropdownlist it triggers some javascript. I guess it's Ajax.
this script updates certain controls in form (in my case "size" dropdownlist -
different sizes for different colors.
I am able to do whole navigate, automatically change dropdownlist selected option and trigger it's onchange event. but after that webbrowser.document doesn't change at all. So i cannot get the new values in this webbrowser.document or webbrowser.documenttext ( even i can see them in application). i am guessing it's not about my application. rather i'm missing some fundamentals in client-side scripting or browsers.
Anyway my question is: Is there any way programmatically detect changes done by client-side script.
P.S. I don't have access to javascript, so i cannot figure out the changing values from there.
thanks a lot
 
I am navigating through WebBrowser to certain site. in this site when you change the color dropdownlist it triggers some javascript. I guess it's Ajax.
this script updates certain controls in form (in my case "size" dropdownlist -
different sizes for different colors.
I am able to do whole navigate, automatically change dropdownlist selected option and trigger it's onchange event. but after that webbrowser.document doesn't change at all. So i cannot get the new values in this webbrowser.document or webbrowser.documenttext ( even i can see them in application). i am guessing it's not about my application. rather i'm missing some fundamentals in client-side scripting or browsers.
Anyway my question is: Is there any way programmatically detect changes done by client-side script.
P.S. I don't have access to javascript, so i cannot figure out the changing values from there.
thanks a lot
 
Back
Top