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 |
Tags
- Android
- 안드로이드
- asp.net
- html
- TextBox
- MSsql
- Maven
- Eclipse
- varags
- C#
- 자바스크립트
- 컬럼명
- Apache Lucene
- 이클립스
- Java
- Bootstrap
- scrollView
- Redirect
- javascript
- STS
- WebView
- 웹 서비스
- MANTIS
- 웹뷰
- decompiler
- 자바
- Web Service
- MS-SQL
- jsp
- SpringSource Tool Suite
Archives
- Today
- Total
bboks.net™
ASP.NET Texbox에 포커스 이동시 팝업창 띄우기 본문
1. 팝업창을 띄우기 위한 javascript를 aspx파일에 작성
axpx 파일
function CheckId() {
window.showModalDialog("CheckID.aspx", window, "dialogWidth:410px; dialogHeight:258px;status:no; scroll:no;help:no;unaborned:no");
}
function CheckId() {
window.showModalDialog("CheckID.aspx", window, "dialogWidth:410px; dialogHeight:258px;status:no; scroll:no;help:no;unaborned:no");
}
2. Code Behind에서 Textbox에 javascript 연결
axpx.cs (code behind)
protected void Page_Load(object sender, EventArgs e)
{
txtUserId.Attributes.Add("onFocus", "CheckIdl()");
}
protected void Page_Load(object sender, EventArgs e)
{
txtUserId.Attributes.Add("onFocus", "CheckIdl()");
}
[참조] Change Textbox/Input background color on focus