Hi,
I have a marqueein master page without any updatepanel .Am updating the content of marquee from content page but it does not reflect. e.g:
((HtmlGenericControl)Master.FindControl("maq1")).InnerText =" fdf fgf gf";
Thanks.
The following works for me
(this.Master.FindControl("maq1") as HtmlGenericControl).InnerHtml = "Hello";
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.