c# - Access to the knowledge element value -


i working on windows form application, , i'm wondering how access elements within webbrowser. if knew value. i'd comparing value"1090093483" value in program

<td examid="48734,48735," userprofileid="2877653,2877653,">1090093483</td> 

i tried following way:

 var element = webbrowser1.document.getelementsbytagname("td").getelementsbyname("1088707003");  if (element != null)   {      headelement.innertext = "13";  } 

but did not know how compare value in row value in program give row cells value if condition. thank tries me or pass on subject.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -