| Author: http://ravipulluri.blogspot.com 04 Aug 2008 | Member Level: Gold | Rating: Points: 2 |
you can check whether fileupload control is empty or not. by this you can insert default images if he doesnt selects the image.
|
| Author: Ramola 05 Aug 2008 | Member Level: Silver | Rating: Points: 3 |
Hi Arun, You can check with this if loop
if(uBuilder.PostedFile !=null && uBuilder.PostedFile.FileName!="") { /* Get the default image here*/ }
|