티스토리 뷰
업데이트패널 (updatepanel)에서 자바스크립트 사용하기
출처 : http://jubilate.tistory.com/115
업데이트 패널안에서 javascript alert창을 띄우는 비지니스 로직입니다.
공통 코드나 baseweb 쪽에 넣어두시면서 update panel이 필요한 페이지에서 사용하시면 될것 같습니다.
원문글은 VB로 되어있습니다.
원문글 제목 : Creating javascript alerts in ASP.NET with UpdatePanel (or without)
원문글 경로 : http://delroger.wordpress.com/2008/08/06/creating-javascript-alerts-in-aspnet-with-updatepanel-or-without/
업데이트 패널에서
public void CreateMessageAlertInUpdatePanel(UpdatePanel up, string strMessage)
{
string strScript = "alert('" + strMessage + "');";
string guidKey = Guid.NewGuid().ToString();
ScriptManager.RegisterStartupScript(up, up.GetType(),guidKey, strScript, true);
}
{
string strScript = "alert('" + strMessage + "');";
string guidKey = Guid.NewGuid().ToString();
ScriptManager.RegisterStartupScript(up, up.GetType(),guidKey, strScript, true);
}
일반 페이지에서 (VB코드와 약간 다릅니다)
public void CreateMessageAlert(string strMessage)
{
string strScript = "alert('" + strMessage + "');";
string guidKey = Guid.NewGuid().ToString();
Page pg = (Page)HttpContext.Current.Handler;
pg.ClientScript.RegisterStartupScript(pg.GetType(), guidKey, strScript,true);
}
{
string strScript = "alert('" + strMessage + "');";
string guidKey = Guid.NewGuid().ToString();
Page pg = (Page)HttpContext.Current.Handler;
pg.ClientScript.RegisterStartupScript(pg.GetType(), guidKey, strScript,true);
}
업데이트패널, 업데이트패널, updatepanel, ajax
'프로그래밍 > ASP.NET' 카테고리의 다른 글
닷넷 페이징, paging (0) | 2013.07.24 |
---|---|
ASP.NET 업데이트패널(updatepanel) 간단 사용법 (0) | 2013.07.18 |
Javascript(자브스크립트)에서 ASP.NET 함수 호출하기 (0) | 2013.03.26 |
Page.GetPostBackEventReference 자바스크립트에서 ASP.NET 함수실행 (0) | 2013.03.26 |
ASP.NET 인라인태그(inline tag) <%, <%=, <%# 등등 (0) | 2013.02.28 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 저장프로시저
- 프로시저
- CSS
- SVG
- WCF
- radius
- html5
- css3
- workbook
- Excel
- jQuery Mobile
- rowspan
- 자바스크립트
- ASP.NET
- jQuery
- 제이쿼리
- 셀렉터
- json
- IE
- grid
- JavaScript
- Mobile
- jquery chart
- Chart
- Ajax
- WebApi
- Style
- drag&drop
- MSSQL
- JS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함