Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / Building Controls / November 2005

Tip: Looking for answers? Try searching our database.

Dynamically Loading User Control in PlaceHolder

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Ugur Ekinci - 22 Nov 2005 12:18 GMT
Hi ,
I load dynamically a user control in PlaceHolder with the number of fileds
in db.
When loading user control there is no problem, if returning field number is
2  then 2 usr controls load in plcholder.
But problem is  that , after page postback plcholder says that I have no
control,

       For i As Integer = 0 To plcHolderUsrCont.Controls.Count - 1
           kontrol1 = DirectCast(plcHolderUsrCont.Controls(i),
UrunGrupTeknik)
           Dim a As String = kontrol1.txtvalue
       Next

I added a reference like below , because usr control loading dynamically
<%@ Reference Control = "../kontroller/UrunGrupTeknik.ascx" %>

I defined a protected variable that's type  is my  usr control
Protected urunGrupTeknikTxtLbl As UrunGrupTeknik = New UrunGrupTeknik

and I load user control like that..

         For i As Integer = 0 To tdsTeknikDetay.table1.Rows.Count - 1
               thisrowTeknikDetay = tdsTeknikDetay.table1.Rows(i)
               findControlPath = Request.ApplicationPath +
"/kontroller/UrunGrupTeknik.ascx"
               kontrol1 = Me.LoadControl(findControlPath)
               urunGrupTeknikTxtLbl = DirectCast(kontrol1, UrunGrupTeknik)
               urunGrupTeknikTxtLbl.lblValue = thisrowTeknikDetay.ACIKLAMA
               kontrol1.ID = i
               plcHolderUsrCont.Controls.Add(kontrol1)
           Next

plcHolder.controls.Count is set to 0 after postback:((
Have you any idea about this problem ?

Thnks....
DS - 22 Nov 2005 14:41 GMT
Hi,

I have a asp table in my .aspx page. I dynamically add the control to this
table. The page shows up fine. The control I had have 2 textboxes. Now I am
stuck and not able to access any of these textboxes inside the control I
added. Infact, i am not able to locate this control in the page.

Please help me out.

D. Santhosh

> Hi ,
> I load dynamically a user control in PlaceHolder with the number of fileds
[quoted text clipped - 33 lines]
>
> Thnks....
Gokhan Altinoren - 27 Nov 2005 16:37 GMT
This is a classic issue.

ASP.NET will not persist your dynamically created controls by default, it
will make sure the control-tree at the .aspx will be regenerated but thats
all, no automatic support for  your codebehind. They are simply won't be
written to Viewstate tree, and hence corresponding server side control won't
be re-created after a postback.

You may use a helper control like this one instead of the PlaceHolder:
http://www.denisbauer.com/ASPNETControls/DynamicControlsPlaceholder.aspx

Gokhan Altinoren
gokhan[RMV_this][at]altinoren[also_RMV_this][dot]com
http://altinoren.com

> Hi ,
> I load dynamically a user control in PlaceHolder with the number of
[quoted text clipped - 36 lines]
>
> Thnks....

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.