Rank: Member Groups: Member
Joined: 7/2/2009 Posts: 25
|
Hi, in order to analyze selected file, i use ClientSideOnFileSelected="function"
where function is
__doPostBack('__Page', 'MyCustomArgument');
then i server side check my things.after postback, file is selected. but if i select a file for deleting, after postback checkbox is not selected (and i can't delete files!). is there any way to have checkbox selected?
(i use this because i need to know if a file is in use,and if so, file cannot be deleted).
thanks.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I don't think you can retain check status across post backs. You can execute your code through AJAX to avoid a full page back though.
Thanks
|