Article at
http://msdn.microsoft.com/en-us/library/system.web.ui.htmlcontrols.htmlcontainercontrol.innerhtml.aspx
suggests you can set the innerhtml of items
So I have
In my code behind I have
When I try to run it says build errors, but doesn't display any ??
Is getting and setting the innerhtml possible ?
Thanks
Jim
http://msdn.microsoft.com/en-us/library/system.web.ui.htmlcontrols.htmlcontainercontrol.innerhtml.aspx
suggests you can set the innerhtml of items
So I have
<
telerik:RadDock
ID
=
"RadDock3"
runat
=
"server"
Width
=
"300px"
Resizable
=
"True"
DockHandle
=
"Grip"
>
<
ContentTemplate
>
<
div
>
<
span
id
=
"Message"
runat
=
"server"
>Hello World</
span
>
</
div
>
</
ContentTemplate
>
</
telerik:RadDock
>
In my code behind I have
Dim myHtml As String = Message.InnerHtml
When I try to run it says build errors, but doesn't display any ??
Is getting and setting the innerhtml possible ?
Thanks
Jim