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
- CPU와 GPU의 차이
- 영어 원서 추천
- PhoneIncomingCall
- 모바일 세미나
- 영어 원서
- Salva Dut
- alsa-lib
- Windows Mobile Device Center
- 윈도우즈 7 ActiveSync
- The Giver 줄거리
- libusb
- c# Monitor.Enter
- 하버드 감정수업
- c# Monitor.Exit
- 윈도우 모바일 프로그래밍
- 율동 공원
- libsndfie
- 감정수업
- A Long walk to Water
- 유니파이드 셰이더
- c# lock
- Deep state
- thread-unsafe
- Qt Layout
- c# static
- overroad
- CallBack
- 요한 성당
- 남수단
- 자기계발 서적
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);
}
}
특정 태그 요소를 얻어 낼 수 있다.