| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 자바스크립트
- TextBox
- 자바
- 안드로이드
- Maven
- html
- Android
- scrollView
- Java
- Eclipse
- MANTIS
- javascript
- C#
- asp.net
- Redirect
- Web Service
- SpringSource Tool Suite
- 웹뷰
- jsp
- 컬럼명
- Bootstrap
- 웹 서비스
- Apache Lucene
- WebView
- 이클립스
- MSsql
- MS-SQL
- STS
- varags
- decompiler
- Today
- Total
목록2011/06/17 (2)
bboks.net™
IE를 띄우려면 2가지 방법이 있다. Process 클래스를 이용한 방법과 System32폴더에 존재하는 SHDocVw.dll을 참조해서 사용하는 것이다. 첫째 Process 클래스를 이용한 방법을 알아보자. 오나전 쉽다. 아래 코드를 보면 이해가 될 것이다. 여기서 Process 클래스의 WaitForExit(); 함수를 호출하면 Modal형태로 띄울 수 있게된다. ------------------------------------------------------------------------------------------------------------ private void button1_Click(object sender, EventArgs e) { ProcessStartInfo startInf..
ASPX DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Untitled Page function ShowConfirmation() { if(confirm("Are you want to show the value?")== true) { //Calling the server side code after confirmation from the user document.getElementById("btnAlelrt").click(); } } Code Behind using System; using System.Data; using System.C..