Im using "FreeTextBox" for users to edit web content (ASP.NET VB)
I query the database on pageload and set:
FreeTextBoxFoo.text = dbFoo.GetValue(2).ToString()
This DOES return the correct string data if I write it to an asp:Literal for example.
However nothing shows in the text box, until I refresh the page (F5) Now in running the application in Visual studio in debug, it works ok.
So where is this string data getting lost, or hung? is it being loaded into the textbox but not displayed until a postback??
ETA: I forgot to mention this is inside an ASP:AccordionPane Added more... It seems that if I put the textbox outside the accordion panel, then it populates ok, so might be something to do with the order of execution?