F farmer Oct 24, 2005 #1 Why: <asp:LinkButton Runat="Server" Text='D D'/> result?D not D D How can I do for that?
R Remy Blaettler Oct 25, 2005 #2 try: <asp:LinkButton id="LinkButton1" runat="server">Link Bu tton</asp:LinkButton>
H heybrakywacky Oct 25, 2005 #3 I'm surprised it's working at all, since I do not believe that 'Text' is a valid attribute for a LinkButton. If you do: <asp:LinkButton Runat="server" id="LinkButton1">D D</asp:LinkButton> I believe you'll get the desired result. HTH, Kevin
I'm surprised it's working at all, since I do not believe that 'Text' is a valid attribute for a LinkButton. If you do: <asp:LinkButton Runat="server" id="LinkButton1">D D</asp:LinkButton> I believe you'll get the desired result. HTH, Kevin