I'm have an .aspx page done with Vb.net and the buttons "Save Image" "print image" "Send image" is showing when I put the cursor on one of the images tag. I say one image because it doesn't appear on the other images tags. I don't want these buttons!
views:
53answers:
2
+1
A:
Are these the buttons?
(I don't know when they appear and when not - check your browser documentation or ask the browser vendor.)
Vlagged
2009-07-07 13:55:19
+1
A:
Do you have the galleryimg tag set on the other images?
<img src="proprietary.gif" galleryimg="no" />
The 'no' setting will not show the toolbar, while if it is set to 'yes' the toolbar will be visible.
You can also disable this feature for the entire page by using the meta tag:
<meta http-equiv="imagetoolbar" content="no" />
Bob F.
2009-07-07 14:03:57