November 16th, 2011, 09:31 PM
I need to capture the logout time and login time. I can capture the login time already but I cannot capture the logout time. I would appreciate all the help that you had given me. Thank you.
This...
November 9th, 2011, 03:20 AM
Original Code
Code:
thumbnailImage.Save(imageStream, System.Drawing.Imaging.Imageformat.Jpeg);
Change it to
Code:
thumbnailImage.Save(imageStream, System.Drawing.Imaging.ImageFormat.Jpeg);
...
November 6th, 2011, 09:06 AM
I had managed to let users upload the image and save into the database and the folder. I need to generate thumbnail from the image and save into the database and the folder as well. But there is some...
October 18th, 2011, 09:10 PM
I need to create a user login session management for a chat application. The default value is 0 which mean that the user is offline or the session has expired. 1 mean that the user is online. How do...