本文介绍了在.aspx页中设置动态ToolTip属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好.
我正在尝试做这样的事情:
Hello All.
I am trying to do something like this:
<asp:TextBox ID="txtTest" runat="server" Text=''<%=strText%>'' ToolTip=''<%=strToolTip%>''>
其中变量strText和strToolTip如下:
Where the variables strText and strToolTip are as follows:
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)
{
}
}
这可能吗?
我不想从页面后面的.cs/code中分配这些属性.我想从.aspx页分配它们.
请指教.
在此先感谢,
Aniruddha
Is this possible?
I don''t want to Assign these properties from the .cs/code behind page. I want to assign them from the .aspx page.
Please advise.
Thanks in Advance,
Aniruddha
推荐答案
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
txtTest.Text = strText;
txttest.ToolTip = strToolTip;
}
还是我错过了什么?
or am I missing something?
这篇关于在.aspx页中设置动态ToolTip属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!