Picture box
-
Hi, Iam creating picture box dynamically but iam getting this error, CODE: PictureBox pb = new PictureBox(); Form.Controls.Add(pb); //Error is in this line// The error comment is: The best overloaded method match for 'System.Web.UI.ControlCollection.Add(System.Web.UI.Control)' has some invalid arguments.
-
Hi, Iam creating picture box dynamically but iam getting this error, CODE: PictureBox pb = new PictureBox(); Form.Controls.Add(pb); //Error is in this line// The error comment is: The best overloaded method match for 'System.Web.UI.ControlCollection.Add(System.Web.UI.Control)' has some invalid arguments.
-
You can't put windows controls in a web page.
Despite everything, the person most likely to be fooling you next is yourself.
-
Then any idea to display image in webpage directly from database (image control need url) i want to display without url is it possible?
-
Then any idea to display image in webpage directly from database (image control need url) i want to display without url is it possible?
-
Then any idea to display image in webpage directly from database (image control need url) i want to display without url is it possible?
there are several options - if you can take out the files from the database, you can set them in a directory and save the paths instead. - if that's not an option, stream the file to a tmp directory and set the url to that path, when the session expires you delete the files used within that session (you'll need a good naming convention...) hope this helps.
V.
Stop smoking so you can: Enjoy longer the money you save. Moviereview Archive -
there are several options - if you can take out the files from the database, you can set them in a directory and save the paths instead. - if that's not an option, stream the file to a tmp directory and set the url to that path, when the session expires you delete the files used within that session (you'll need a good naming convention...) hope this helps.
V.
Stop smoking so you can: Enjoy longer the money you save. Moviereview Archive