开发者

In ASP.NET 3.5, what is the .Tag Namespace?

开发者 https://www.devze.com 2023-01-28 23:07 出处:网络
I am using TextBox1.Tag + TextBox1.Text for 开发者_Python百科a calculator but the Tag part is not accepted. What namespace must I use for it to be accepted in an ASP.NET 3.5 application?You might be t

I am using TextBox1.Tag + TextBox1.Text for 开发者_Python百科a calculator but the Tag part is not accepted. What namespace must I use for it to be accepted in an ASP.NET 3.5 application?


You might be thinking about Windows Forms rather that ASP.NET

The Tag property is a property on the System.Windows.Forms.Control which isn't a Web Control. Have a look at the System.Web.UI.WebControls.TextBox for information on the available properties.

0

精彩评论

暂无评论...
验证码 换一张
取 消