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
- javascript
- 가상머신
- db
- 오라클
- ASP
- 프로그래머스
- mysql
- 데이터베이스
- memoryDB
- 스프링부트
- springboot
- PHP
- 쿼리
- 이미지엑박
- 코딩테스트
- C#
- CrossSiteScripting
- mssql
- 자동증가열
- 다중기본키
- HTML
- 다중pk
- 자바스크립트
- oracle
- VMWare
- windows7
- ascx.cs
- 트리플DES
- SQL
- 람다식함수
Archives
- Today
- Total
개발바닥 아방수
언제 Response.Redirect(url, true)를 쓸까? 본문
- Response.Redirect(URL,false): The client is redirected to a new page and the current page on the server will keep processing ahead. (페이지 이동, 기존 페이지 스레드 계속)
- Response.Redirect(URL,true): The client is redirected to a new page, but the processing of the current page is aborted. (페이지 이동, 기존 페이지 스레드 죽음)
(참고출처) https://stackoverflow.com/questions/6707465/when-should-i-use-response-redirecturl-true
'웹 개발 > C#' 카테고리의 다른 글
JSON 데이터 직렬화 및 역직렬화하기 (Json.NET vs JavaScriptSerializer) (0) | 2023.01.03 |
---|---|
.aspx 파일과 .ascx 파일의 차이 (0) | 2022.11.24 |
[class] C# - enums (이넘) - 상수 열거형 클래스 (0) | 2022.11.22 |