ASP.Net Readonly textbox

M

Matias

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
 
C

Christopher Reed

Try setting the TextBox.Enabled property to False and then set the Text
property. The ReadOnly property prevents changing the original content.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top