3
<webbrowser>.Document.Window.Frames
을 사용하여 프레임을 가져옵니다. 내 <WebBrowser>
은 2 프레임을 가지고 있습니다. 내 유일한 문제는 인덱스 0에서 보이지만 1이 아닌 것 같습니다.웹 브라우저에서 프레임 작업하기
어떤 도움이 필요합니까?
HtmlWindow wf = wb.Document.Window.Frames[1];
string s = wf.Document.Body.OuterHtml;
및 소스보기
<frameset rows="0,*" border="0" frameborder="0" framespacing="0">
<frame name="entrustTruePassAppletFrame" src="EntrustTruePassApplet.html" marginwidth="0" marginheight="0" scrolling="no" noresize>
<!-- It is mandatory for the frame where the user interaction happens to have the name defined in the Configuration as appletHtmlGuiTarget-->
<frame name="entrustTruePassGuiFrame" src="AuthenticateUserInputRoamingEPF.html"> </frameset>
마크 업 표시, – Icarus
웹 페이지의 소스 코드를 요청 하시겠습니까? – user989888
예, 프레임을 선언 한 곳의 관련 부분 – Icarus