I have a situation where i have a very big project and i want to change max length property of every textbox that exist in application. How can i do this with small effort and without overhead on server.
|
TagMapping is done by the compiler, so there's no added runtime overhead. You could also use a control adapter, but in this case I think tag mapping may be cleaner and easier. |
|||
|
|
|
You can use a control adapter to customize the rendering of all the controls of a specified type, so this way you have control over the max length accepted by the text box. From the
In this case the arbitrary filter would be a common |
||||
|
|
|
Refactor. If all your TextBox controls on the project derives from System.Web.TextBox then make your own MyTextBox that derives from System.Web.TextBox and make all your textboxes derives from this instead. So, in, the MyTextBox just set the preferred MaxLength |
|||
|
|
|
Use search-replace option of text editors. alternatively if you do not want to hard code it, use a common Java script file on page load. In this javascript set the MaxLenght of each TextBox of the page. Something like this in Jquery should work for you
|
||||
|
|