Hi globosoft,
About the userID question
You can specify the User by property "LogonUserName"; Like
gallery1.LogonUserName = "ken";
gallery1.LogonUserName = Context.User.Identity.Name;
---------------------------------------------------------------------------------------
1. Be able to upload images with multiple file select.
It is the default function of DotNetGallery
2. images need to be grouped/identified by two categories. (for us, the categories are propertyID and user. So each image belongs to a propertyID and a user. we need to be able to view all the pictures by a propertyID and by a user. Or we can view all the pictures by simply a propertyID. When upload, we can specified what propertyID and user this picture belongs to)
You can display the pictures by categoryID, like
gallery1.CategoryID = "1";
3. ASP.NET DLL/Ajax control
For now does not support it. like UpdatePanel.
4. interface with sql server store procedures. We store file names into sql database via store procedures....
You can handle this logic in the image upload event
protected void gallery1_PostProcessImage(object sender, GalleryImageEventArgs args)
{
//image name
args.Title;
}
Regards,
Ken