블로그 이미지
다비도프

만나고, 고백하고, 가슴 떨리고, 설레이고, 웃고, 사랑하고, 키스하고, 함께하고..

Rss feed Tistory
WEB/ASP.NET With C# 2007. 3. 14. 12:02

Control : PlaceHolder

<aspx>
....
<asp:PlaceHolder ID="PlaceHolder1" runat="server" ></asp:PlaceHolder>
....

이렇게 자리를 잡아준다..


<cs>

...
PG.Temp.Sample.ucSample ucSample1 = (PG.Temp.Sample.ucSample) LoadControl(("include/ucSample.ascx");
ucSample1.[public 속성값] = 설정;
PlaceHolder1.Controls.Add(ucSample1);
...

요렇게 하믄 aspx안의 PlaceHolder가 잡아놓은 Place에 ucSample형 객체인 ucSample1이 들어간다.. 워~~  'ㅁ')
UserControl뿐만 아니라 니가 추가하고자 하는 모든 Control이 해당될 수 있다고 하니 엄청난거다..


Understand PlaceHolder

Understand PlaceHolder


,
TOTAL TODAY