Hello Dinu
> How to Cast a Variable to User control in ASP.NET using vb.net as code-
> behind
Dim myUserControl As UserControl = DirectCast(<var>, UserControl)

Signature
Gruss, Peter Bucher
Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET
Dinu - 31 Jul 2007 13:50 GMT
On Jul 31, 5:25 pm, "Peter Bucher [MVP]" <peter.buc...@aspnetzone.de>
wrote:
> Hello Dinu
>
[quoted text clipped - 6 lines]
> Gruss, Peter Bucher
> Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerlandhttp://www.aspnetzone.de/- ASP.NET Zone, die ASP.NET Communityhttp://www.aspnetzone.de/blogs/peterbucher/- Auf den Spuren von .NET
Hi
thanks for ur response,
can we use Ctype method??
Peter Bucher [MVP] - 31 Jul 2007 15:35 GMT
Hi Dinu
> can we use Ctype method??
Yes you can, read:
- http://www.google.ch/search?hl=de&q=ctype+vs+directcast&meta=

Signature
Gruss, Peter Bucher
Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET
Dinu - 31 Jul 2007 13:54 GMT
Hi Peter,
Can u tell me how can we dynamically access properties of a user
control
in master page from a content page and set properties of user control
in master page from content page
thanks
Peter Bucher [MVP] - 31 Jul 2007 15:43 GMT
Hi Dinu
> Can u tell me how can we dynamically access properties of a user
> control
> in master page from a content page and set properties of user control
> in master page from content page
Access the masterpage in a contentpage with this.Master.Page, use further
the .FindControl() methode
of the masterpage to find the usercontrol. (Or use .FindControl twice, for
the ContainerControl in the masterpage AND then for the specific usercontrol
within the container.
then cast the usercontrol (Control) to (UserControl) and access the
properties you want.

Signature
Gruss, Peter Bucher
Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET