在asp.net网页上以编程方式添加工具提示

时间:2015-03-09 03:23:24

标签: c# asp.net

我的项目中有这个代码。 string =" my string"

我如何在按钮上显示此字符串作为工具提示。我想以编程方式执行此操作。我想在我的代码中做这个而不是设计。

我使用c#language

在asp.net中编写我的编码

1 个答案:

答案 0 :(得分:0)

以下是添加tooltip programmatically

的方法

只需获取按钮的ID

<asp:Button id="button1" Text="Submit" runat="server" />

在您的代码中:

//do some code to retrieve data from database and store it to this variable
String tooltip = "some text"; 

button1.ToolTip = tooltip;