Hi!
I'm working in an application in VS2005. I have a Website that has a page
where the user has to fill in some dates. In 2003 I used to have a function
in javascript that would popup a calendar, the user would select the date
there and then that date would be entered in a read-only textbox, so I was
sure that the format was correct. Now this works ok in 2005, but when I try
to read the text from that textbox in codebehind, I always get what was on
the textbox when the page was rendered. I tried setting the readonly
attribute to false, and it works then, so it's most likely a bug. Does
anybody know a workaround??
Thanks in advance,
Matias
Christopher Reed - 22 Dec 2005 15:59 GMT
Try setting the TextBox.Enabled property to False and then set the Text
property. The ReadOnly property prevents changing the original content.

Signature
Christopher A. Reed
"The oxen are slow, but the earth is patient."
> Hi!
> I'm working in an application in VS2005. I have a Website that has a page
[quoted text clipped - 9 lines]
>
> Matias