Storing some info at textboxes!
-
hello guys, I simply would like to store some details within the textboxes most preferably in design time (excluding ID) ... but can't find anything approperiate ... for example I want to store the Data Type of the textbox eg it is String, Number, Date, Boolean etc ... TextBoxes had Tag property but I can't find it. Anything to store to? Any better solutions? TA
-
hello guys, I simply would like to store some details within the textboxes most preferably in design time (excluding ID) ... but can't find anything approperiate ... for example I want to store the Data Type of the textbox eg it is String, Number, Date, Boolean etc ... TextBoxes had Tag property but I can't find it. Anything to store to? Any better solutions? TA
Hi there, I guess that you come from the world of the window-based applications since the TextBox[^] web control does not support the
Tag
property. Basically, the Tag property of the TextBox window control is used to store data so that it can be accessed quickly, however, the Texbox instance of the web page will be disposed after the life cycle of the request is finished so the ASP.NET provides a couple of options[^] that you might consider to maintain the web page state. -
hello guys, I simply would like to store some details within the textboxes most preferably in design time (excluding ID) ... but can't find anything approperiate ... for example I want to store the Data Type of the textbox eg it is String, Number, Date, Boolean etc ... TextBoxes had Tag property but I can't find it. Anything to store to? Any better solutions? TA