cast in VB.Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dim uc As UserControl
uc = LoadControl("\usercontrol\topheader.ascx")
Dim top As TopHeader
How do I convert uc to datatype TopHeader?
In C# I would do a cast. I have forgot how to do a cast in VB.Net
 
Hi,
try this code:
dim r as topheader= ctype(Page.LoadControl("\usercontrol\topheader.ascx"),
topheader)
Where topheader is the name of usercontrol class
 
Back
Top