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.
我在一个asp.net网站上工作..我需要一点帮助..请参阅图片作为参考...
我想要发生的是当从右侧的按钮单击按钮时.. 文本会出现在盒装空间中...我不知道哪个是用于将文本保存在空间上的最佳控件我会喜欢出现的文字..
哪个是同时保存图像和文本的最佳控件?我怎么能把它连接到右边的按钮?
您可以使用 HtmlGenericControl 类。它有一个构造函数,它接受一个字符串变量,该变量使用指定的标记初始化 HtmlGenericControl 类的新实例:
var div = new HtmlGenericControl("div");
它还具有 InnerHtml 和 InnerText 属性。
使用自定义内容设置 div 意味着您可以托管图像、文本或基本上任何您想在 div 中填充的内容。