I am using Web form to upload pictures in the database. I need a help. I want to check the file size before posting on the database. If the file size is more than 1MB, the message will be shown and no information will be posted on the database. And vice versa.
Loading
MohanPosted Aug 11, 2006, 6:35 AM
check the file size using
if(FileObj.ContentLength <= 1052182) // Upto 1 MB
{
// Insert into Database
}
else
{
// Display the Message.
}
Help me if i wrong.