Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Qt Layout
- 율동 공원
- CallBack
- alsa-lib
- 하버드 감정수업
- 자기계발 서적
- libusb
- 요한 성당
- c# Monitor.Exit
- 감정수업
- PhoneIncomingCall
- 영어 원서
- 모바일 세미나
- 남수단
- 유니파이드 셰이더
- c# static
- thread-unsafe
- The Giver 줄거리
- Salva Dut
- 윈도우즈 7 ActiveSync
- c# Monitor.Enter
- A Long walk to Water
- 영어 원서 추천
- CPU와 GPU의 차이
- c# lock
- libsndfie
- Deep state
- overroad
- Windows Mobile Device Center
- 윈도우 모바일 프로그래밍
Archives
- Today
- Total
저 하늘의 구름처럼~
IHTMLElement2를 이용한 모든 HTML 태그 얻기 본문
SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();
foreach(SHDocVw.InternetExplorer ie in shellWindows)
{
filename = Path.GetFileNameWithoutExtension(ie.FullName).ToLower();
if (filename.Equals("iexplore"))
{
// 밑의 두소스를 여기서 실행 시키면 됨.
}
}
현재 활성화 된 인터넷 익스플로어의 정보를 얻어 냄. 얻어진 정보로 document
를 얻어내어 사용한다.
mshtml,SHDocVw는 별도의 참조 추가를 필요로 한다.
Microsoft HTML Object Library(mshtml.tlb),Microsoft Internet Controls(iframe.dll)
을 추가시켜준다.
mshtml.IHTMLDocument2 doc = (mshtml.IHTMLDocument2)ie.Document;
mshtml.IHTMLElementCollection AllElements = doc.all;
foreach (mshtml.IHTMLDOMNode Element in AllElements)
{
string ElementName = Element.nodeName;
Console.WriteLine(ElementName);
}
IHTMLDocument2,IHTMLElementCollection 을 이용하여
모든 태그 이름 얻어 낼수 있다.
foreach (IHTMLElement HTMLElement in doc.all)
{
if (HTMLElement.tagName == "A")
{
ListOfLinks.Add(HTMLElement);
}
}
특정 태그 요소를 얻어 낼 수 있다.
foreach(SHDocVw.InternetExplorer ie in shellWindows)
{
filename = Path.GetFileNameWithoutExtension(ie.FullName).ToLower();
if (filename.Equals("iexplore"))
{
// 밑의 두소스를 여기서 실행 시키면 됨.
}
}
현재 활성화 된 인터넷 익스플로어의 정보를 얻어 냄. 얻어진 정보로 document
를 얻어내어 사용한다.
mshtml,SHDocVw는 별도의 참조 추가를 필요로 한다.
Microsoft HTML Object Library(mshtml.tlb),Microsoft Internet Controls(iframe.dll)
을 추가시켜준다.
mshtml.IHTMLDocument2 doc = (mshtml.IHTMLDocument2)ie.Document;
mshtml.IHTMLElementCollection AllElements = doc.all;
foreach (mshtml.IHTMLDOMNode Element in AllElements)
{
string ElementName = Element.nodeName;
Console.WriteLine(ElementName);
}
IHTMLDocument2,IHTMLElementCollection 을 이용하여
모든 태그 이름 얻어 낼수 있다.
foreach (IHTMLElement HTMLElement in doc.all)
{
if (HTMLElement.tagName == "A")
{
ListOfLinks.Add(HTMLElement);
}
}
특정 태그 요소를 얻어 낼 수 있다.