Tuesday, October 11, 2011

Calendarextender vs Read Only Textbox

Always get incorrect data from readonly textbox when you use Calendar Extender? To fix this: Set readonly in Textbox property to False Use the following code in PageLoad Event protected void Page_Load(object sender, EventArgs e) {       TextBox1.Attributes.Add("readonly", "readonly"); }...
Página 1 de 11