Hi,
Trying to use an updatePanel in a ListView, I've got a problem
If I'm using this code on a page, it's working fine :
And the code.behind
The control "BrowseDetails.ascx" just displays the current date/time (eg now()).
But, trying to include this in a RadListView, it doesn't work at all. Am I doing something wrong or isn't is possible ?
Thank you,
Trying to use an updatePanel in a ListView, I've got a problem
If I'm using this code on a page, it's working fine :
<
asp:linkButton
ID
=
"Button1"
Text
=
"Time display"
OnClick
=
"Button1_Click"
runat
=
"server"
/>
<
br
/>
<
asp:UpdatePanel
ID
=
"UpdatePanel1"
UpdateMode
=
"Conditional"
ChildrenAsTrigger
=
"true"
runat
=
"server"
>
<
Triggers
>
<
asp:AsyncPostBackTrigger
ControlID
=
"Button1"
/>
</
Triggers
>
<
ContentTemplate
>
<
asp:PlaceHolder
ID
=
"monPh"
runat
=
"server"
></
asp:PlaceHolder
>
</
ContentTemplate
>
</
asp:UpdatePanel
>
And the code.behind
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim myUC As Control = LoadControl("/usercontrols/BrowseMedia/browseDetails.ascx")
monPh.Controls.Add(myUC)
End Sub
The control "BrowseDetails.ascx" just displays the current date/time (eg now()).
But, trying to include this in a RadListView, it doesn't work at all. Am I doing something wrong or isn't is possible ?
Thank you,