I implemented the AsyncFileUpload control on a web page. This web page requires uploaded files to appear in a GridView. The GridView
AsyncFileUpload
GridView
AsyncFileUpload has a property that named IsUploading. when this property is set to false, a postback will happen. you can check this property like this:
IsUploading
postback
if(AsyncFileUpload1.IsUploading) { ..... upload codes }