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
- MANTIS
- 이클립스
- varags
- decompiler
- STS
- javascript
- MS-SQL
- scrollView
- Bootstrap
- TextBox
- 웹 서비스
- WebView
- 안드로이드
- Android
- asp.net
- jsp
- C#
- Web Service
- Eclipse
- Java
- MSsql
- 컬럼명
- 웹뷰
- html
- Maven
- Apache Lucene
- 자바
- Redirect
- SpringSource Tool Suite
- 자바스크립트
Archives
- Today
- Total
bboks.net™
ASP.NET alert 후 redirection 본문
일반적으로 alert 메시지를 보여주고 redirection을 하기 위해서는
<script language=javascript>alert('alert_message');href='link_page.xxx'</script>를 사용한다.
하지만 유독 ASP.NET에서는 스크립트가 먹지 않는다. 해결책은
<script>alert('alert_message');window.location.href='link_page.xxx';</script>
window.location만 붙여줬을뿐인데 잘먹는다 -_-;;