일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 소년포비
- 신동혁
- windows mobile 6.5
- 윈도우모바일
- 주신영
- MIX10
- 데브피아
- 마이크로소프트
- 황광진
- winmodev
- 실버라이트 코리아
- 윈모데브
- 윈도우폰7
- UX베이커리
- 윈도우 모바일
- 헤이맨
- 거제도
- 서진호
- 안드로이드
- 쉐어포인트코리아
- 윈도우폰
- 김춘배
- 훈스닷넷
- 스마트폰
- 신석현
- 루나네스
- 소년포비소프트
- 지승욱
- 윈도데브
- 옴니아2
- Today
- Total
소년포비의 세계정복!!
[C#] 웹페이지 자동로그인 구현 본문
1. C# WindowsFormApplication 만들고
2. 참조에 Microsoft.mshtml 추가
3. 폼 코드보기에서 아래 내용으로 변경
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using mshtml;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("http://mdinside.co.kr/", false);
}
private void button1_Click(object sender, EventArgs e)
{
mshtml.HTMLDocument HTMLDoc = new HTMLDocument();
HTMLDoc = (mshtml.HTMLDocument)webBrowser1.Document.DomDocument;
IHTMLElement fhead = (IHTMLElement)HTMLDoc.getElementsByName("fhead").item(null, 0);
IHTMLElement mb_id = (IHTMLElement)HTMLDoc.getElementsByName("mb_id").item(null, 0);
IHTMLElement mb_password = (IHTMLElement)HTMLDoc.getElementsByName("mb_password").item(null, 0);
mb_id.setAttribute("value", "아이디", 0);
mb_password.setAttribute("value", (Object)"비밀번호", 0);
webBrowser1.Document.InvokeScript("fhead_submit", new Object[] { fhead });
}
}
}
'프로그램 세상 > C#' 카테고리의 다른 글
[C#] C#에서 C++ DLL의 Call by Referance out 인수 사용하는 방법 (0) | 2009.10.24 |
---|---|
[C#]C#에서 Win32 API 사용하기2 (0) | 2009.10.24 |
[C#] 람다식(Lambda Expression) (0) | 2009.10.22 |
[C#]Visual Studio 2008에서 DLL 만들고 사용하기 (0) | 2009.10.22 |
[C#]급여 계산 (0) | 2009.10.22 |