Reputation: 652
I am using TextBox1.Tag + TextBox1.Text for 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?
Upvotes: 0
Views: 169
Reputation: 9298
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.
Upvotes: 1