If you have in ASP.NET a textbox with property readonly=true or enabled=false then on postback it will lose its value. To prevent this, instead of making the textbox readonly using properties option, write in the server code
TextBox1.Attributes.Add(“readonly”, “readonly”);
That will still make the textbox readonly and will also retain the value after each postback.
Mar
24
Mar
17
If not a bug in your current distribution then just go to Content Assist preferences in:
Windows/Preferences/Java/Editor/Content Assist/Advanced and press “Restore Defaults” or check the option “Java Proposals”.