i try to load some user control on my Default.aspx page selecting dropdown control. i searched some data from net i 've learn 2 methods there is first one :

http://blah.winsmarts.com/2006/05/20/loadcontrol-a-usercontrol--and-pass-in-constructor-parameters.aspx

Second one:

http://www.csharpnedir.com/articles/read/?filter=&author=&cat=aspx&id=689&title=Kullan%C4%B1c%C4%B1%20Web%20Kontrollerini%20Daha%20Etkin%20Kullanmak

Secand one is simple:


protected void Page_Init(object sender, EventArgs e)
{
    AdresBilgisi kontrol1=(AdresBilgisi)LoadControl("AdresBilgisi.ascx");
    AdresBilgisi kontrol2 = (AdresBilgisi)LoadControl("AdresBilgisi2.ascx");

    kontrol1.Ilce = "İlçe giriniz...";
    kontrol2.PostaKodu = "90000";

    phKontroller.Controls.Add(kontrol1); 
    phKontroller.Controls.Add(kontrol2);
}

which one do you prefer to loadASCx control to page? And Why? please give some detail pros and cons of 2 method(first and second)

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It has been always prefer your second approach. Because you have more control on UI and you can see the UI layout on your desired location where you put on the page.

Regarding first approach, it can be used unless there is some special need. e.g. If you want to load user control at runtime depend on some situation/condition.

link|improve this answer
i think that you can explain more :/ thanks again – programmerist May 3 '11 at 19:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.