Hi,
I'm working on a web form page (.aspx), where there is a <asp:Button> that if you click on it, it will go to another page; and the text to be displayed on this button has both regular and bold fonts, like this:
Go to My Blog (with "My" being bold)
Now, I'm trying to make this work:
<asp:Button id="" runat="server" ...>
Go to <strong>My</strong> Blog
</asp:Button>
But VS complains that <strong> cannot be nested inside <asp:Button>. same for <b></b>.
If I write code like this:
<asp: Button id="" runat="server" text="Go to My Blog" />
now, it works, however, the "My" cannot be bold.
Does anyone have an idea of how to make this work?
Thanks in advance,
Claudia
Go to the complete details ...