<asp:TextBox ID="txtTest" runat="server" Text='<%=strText%>' ToolTip='<%=strToolTip%>'>
public partial class _default : System.Web.UI.Page { public string strToolTip = "Test ToolTip"; public string strText = "Aniruddha"; protected void Page_Load(object sender, EventArgs e) { } }
protected override void OnLoad(EventArgs e) { base.OnLoad(e); txtTest.Text = strText; txttest.ToolTip = strToolTip; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)