Server : 서버측 정보를 확인 httpServerutility 클래스 인스턴스 MapPath(",") : 현재 파일과 같은 경로 값 반환 Execute() : 다른 파일 포함 후 제어권 돌아옴 Transfer() : 다른 파일 포함 후 제어권 넘김 UrlPathEncode() 넘겨져 온 쿼리 스트링을 유니코드로 변환 ScriptTimeOut : 서버측에서 현재 Aspx페이지를 몇 초간 처리할 건지 설정 <참고> http://support.microsoft.com/kb/290292/ko http://msdn.microsoft.com/ko-kr/library/system.web.httprequest.mappath(VS.80).aspx |
//현재 스크립트 파일의 루트 경호 |
--Excute
public partial class FrmServerExecute : System.Web.UI.Page Server.Execute("./RrmRequestUserHostAddress.aspx"); //현재 웹폼에 또 다른 웹폼을 추가 : 제어권넘김 //Transfer() = Execute() + Response.End() |
'.Net Project > ASP.NET 3.5 Sp1' 카테고리의 다른 글
8장 ASP.NET 주요 속성 또는 메서드(Page클래스) (0) | 2009.10.05 |
---|---|
7장 ASP.NET 주요 속성 또는 메서드(ApplicationSession) (0) | 2009.10.05 |
5장 ASP.NET 주요 속성 또는 메서드(HttpRequest) (0) | 2009.10.05 |
3-2장 ASP.NET 내장 객체(ResponseRedirect) (0) | 2009.10.05 |
3-1장 ASP.NET 내장 객체(ResponseBuffer) (0) | 2009.10.05 |