Click here to Skip to main content
15,889,527 members

Comments by Steve Echols (Top 17 by date)

Steve Echols 13-Aug-13 18:21pm View    
Maybe you could hide the elements (visibility:hidden) and after you set the translated text, then show the element (visibility:visible). I would use visibility:hidden and not display: none, so the elements still take up the space of the original text on the page, otherwise the rendering might be a bit jumpy.
Steve Echols 18-May-12 2:54am View    
I think you need to determine what Object was hit (such as a datapoint).

http://msdn.microsoft.com/en-us/library/system.windows.forms.datavisualization.charting.hittestresult.aspx
Steve Echols 17-May-12 0:07am View    
I think this is more of a problem with how browsers cache the pages, vs. session. When the user hits back in the browser, it just loads the page from the cache, without refreshing it.

There's are potentially multiple solutions, from using javascript to handle body onload and calling a web service to see if session is still active, or telling the browser to not cache the page.
Steve Echols 16-May-12 23:56pm View    
Does the text disappear after a post back? I don't think the label control maintains view state, so setting the text property of a label control wrapped in a IsPostBack check won't work. I could be wrong, but something to consider....
Steve Echols 16-May-12 0:42am View    
Correct. That will get you the CUSTCODE_T value.

You're welcome!