Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Passing Parameters to User Controls that are Dynamically Loaded in Placeholders

Reply
Thread Tools

Passing Parameters to User Controls that are Dynamically Loaded in Placeholders

 
 
Josh
Guest
Posts: n/a
 
      05-25-2004
Hi Guys,

I have been having a big problem with trying to pass parameters into a
user control when the user control is dynamically loaded into a
placholder. I am developing in c#. I have get and set methods on the
user control "editButton.ascx" which work fine.

How do i pass parameter into the user controls "c1", "c2" ?

Here is a bit of my code that is calling the user control from the
aspx page.
public void setupTemplate(string PID)
{
//load control into a placeholder
UserControl c1 = (UserControl) LoadControl
System.Configuration.ConfigurationSettings.AppSett ings["virtualPath"]
+ "editButton.ascx");
UserControl c2 = (UserControl)
LoadControl(System.Configuration.ConfigurationSett ings.AppSettings["virtualP
ath"]
+ "editButton.ascx");

//PLACEHOLDER 1
PlaceHolder phPlaceHolder =
(PlaceHolder)this.FindControl("Form1").FindControl ("PlaceHolder1");
phPlaceHolder.Controls.Clear();
phPlaceHolder.Controls.Add(c1);
//PLACEHOLDER 2
PlaceHolder phPlaceHolder2 =
(PlaceHolder)this.FindControl("Form1").FindControl ("PlaceHolder2");
phPlaceHolder2.Controls.Clear();
phPlaceHolder2.Controls.Add(c2);
}

Any help would be greatly appreciated.

Thanks, Josh


 
Reply With Quote
 
 
 
 
Jeffrey Palermo [MCP]
Guest
Posts: n/a
 
      05-26-2004
Josh,
There are plenty of ways to do this.
1. The user control has access to the Form and Querystring collections.
2. The user control has access to the HttpContext.Current.Items collection.
3. You can make a base class for your dynamic user controls and make public
properties. Then you can declare the dynamic control as MyUserControl
instead of UserControl and set the properties after LoadControl().

A dynamically loaded user control is still a user control, so getting
information to it is the same.

For a practical example of a dynamically-loaded user control, you can check
out my EZWeb workspace on GotDotNet.com. I implement a "Master Pages"
feature with v1.1 by make templates using UserControls and dynamically
loading them. Then code in the user controls gets information (or the
parameters you speak of): http://workspaces.gotdotnet.com/ezweb.

Regards,
Jeffrey Palermo


"Josh" <> wrote in message
news:%...
> Hi Guys,
>
> I have been having a big problem with trying to pass parameters into a
> user control when the user control is dynamically loaded into a
> placholder. I am developing in c#. I have get and set methods on the
> user control "editButton.ascx" which work fine.
>
> How do i pass parameter into the user controls "c1", "c2" ?
>
> Here is a bit of my code that is calling the user control from the
> aspx page.
> public void setupTemplate(string PID)
> {
> //load control into a placeholder
> UserControl c1 = (UserControl) LoadControl
> System.Configuration.ConfigurationSettings.AppSett ings["virtualPath"]
> + "editButton.ascx");
> UserControl c2 = (UserControl)
>

LoadControl(System.Configuration.ConfigurationSett ings.AppSettings["virtualP
> ath"]
> + "editButton.ascx");
>
> //PLACEHOLDER 1
> PlaceHolder phPlaceHolder =
> (PlaceHolder)this.FindControl("Form1").FindControl ("PlaceHolder1");
> phPlaceHolder.Controls.Clear();
> phPlaceHolder.Controls.Add(c1);
> //PLACEHOLDER 2
> PlaceHolder phPlaceHolder2 =
> (PlaceHolder)this.FindControl("Form1").FindControl ("PlaceHolder2");
> phPlaceHolder2.Controls.Clear();
> phPlaceHolder2.Controls.Add(c2);
> }
>
> Any help would be greatly appreciated.
>
> Thanks, Josh
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
More passing parameters to dynamically loaded user controls voro.cibus@gmail.com ASP .Net 3 07-26-2005 11:37 PM
More passing parameters to dynamically loaded user controls JB McMichael ASP .Net 0 07-26-2005 10:21 PM
Failed to load viewstate when dynamically adding controls in placeholders Sinisa Ruzin ASP .Net 0 10-07-2004 05:31 PM
Passing Parameters to User Controls that are Dynamically Loaded in Placeholders Josh ASP .Net Building Controls 1 05-26-2004 06:41 AM
Passing Parameters to User Controls that are Dynamically Loaded in Placeholders Josh ASP .Net Web Controls 1 05-26-2004 06:41 AM



Advertisments
 



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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57