Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 VisualBasic2010 Web 应用程序中,我应该使用工具箱中的哪个控件来显示和隐藏页面上的多行文本块?
接下来我将有一个名为“隐藏”的链接按钮,当用户单击它时,文本的 .visible 属性将设置为 false。
我会制作 html 服务器端标签
<div class="tooltip" runat="server" ID="myTooltip" Visible="true">Some multiline text</div>
并在后面的代码中更改它的可见属性。
linkButton1_Click(object sender, EventArgs e) { myTooltip.Visible = false; }
非常基本的解决方案,但对我来说非常有用。
其他选项是您也可以使用 Tooltip 控件。