I am trying to use WebBrowser control to click a button that doesn't have any anchor text or anything
I looked at the source and saw this.
var _tm7 = new TabMenu( 'TempoTabMenuControl', 'TempoTabMenuControlRow', ['Add Edit'], 0); _tm7.Add(new TabMenuItem('View Menu', '/Edit/NewUI.html?tstudio=45', 'main'), true); _tm7.Add(new TabMenuItem('Property List', '/Edit/Scripts/PrpList.asp', 'display'), false); _tm7.Add(new TabMenuItem('New Listing', '/Edit/Scripts/NewList.asp', 'display'), false);
I guess its script to populate the fields of the dropdown menu. I want to get to "/Edit/Scripts/NewList.asp" but I have to do it with the javascript because the NewList.asp is only configured to work from within a frame with the main page as the parent.
The Javascript file they use is here:
Is there some way to activate some kind of evil javascript method or something from the WebBrowser control?
Javascript Gurus Please HelP!!