Forum Moderators: open
Public TextBoxValue as string
then create a code for your user form, then on you aspx drop placeholder which can be loaded and set from your aspx page
Dim ctl As Control = LoadControl("example.ascx")
CType(ctl, example ).TextBoxValue = SomeTextHere
PlaceHolder1.Controls.Add(ctl)
see user controls at [odetocode.com...]