../images/Emo26.gif
ב-codebehind של ה-user controls (סיומת ascx.cs בדרך כלל), אמור להיות מוגדר ה-type שלו:
public class myUserControl : WebUserControl { .... }
אתה לוקח את השם של ה-type הזה, ומגדיר לפיו אובייקט ב-code behind של הדף שלך:
public class myPage : Page { //Add this line: protected myUserControl myCtrl; //from now on we will refer to our user control as myCtrl. }
שים לב שחובה שהוא יהיה protected.