블로그 이미지
kyeongkyun

calendar

      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    

Notice

2007/09/18 11:36 ASP.NET
urlMappings요소는 특정 url을 특정 url로 이동 시켜주는 기능을 한다.
웹사이트 호출 시 index.aspx페이지를 호출하면 바로 main/default.aspx페이지로 이동해야 할 경우 아래의 코드와 같이 mappedUrl과 url에 그 값을 넣어줄 수 있다.
<configuration>
  <system.web>
  <urlMappings enabled="true">
     <add url="~/index.aspx" mappedUrl="~/default.aspx"/>
  </urlMappings>
  </system.web>
</configuration>

크리에이티브 커먼즈 라이선스
Creative Commons License
posted by kyeongkyun(kobukii) kyeongkyun
prev 1 ... 31 32 33 34 35 36 37 38 39 ... 48 next