I have put this code in my page, and it works ok except for PostedFileLabel.
When I click Upload button, then PostedFileLabel.Text is showing "{posted_file_size_kb} KB" instead of actual file size in KB.
I have checked if that happens when PostedFileLabelFormat is not modified, then it is ok.
Can you help me?
Code: HTML/ASPX
<EO:CallbackPanel runat="server" id="CallbackPanel1" Triggers="{ControlID:ajup;Parameter:}">
<EO:AJAXUploader
id ="ajup"
runat ="server"
TempFileLocation ="~/tempajup"
MaxFileCount ="10"
MaxDataSize ="10000"
ProgressBarSkin ="Windows_Vista"
PostedFileLabelFormat ="{posted_file_name} - ({posted_file_size_kb} KB)"
AutoPostBack ="true"
/>
</EO:CallbackPanel>