| Author: D.Jeya kumar(JK) 10 Oct 2008 | Member Level: Diamond | Rating:  Points: 4 |
Hi,
No,you cannot use the image source as aspx it is to display the image in that control. Use the hyperlink to refer to the aspx or other pages. for what you need to refer the aspx file there?.
save the aspx file as image file and then refer the image file
Regards JK
|
| Author: Ravisanker 10 Oct 2008 | Member Level: Silver | Rating:  Points: 4 |
u can use a <iframe> in the SRC="" call a aspx file or ashx file cal the image in that page and resize using
System.Drawing.Image imageLogo System.Drawing.Image thumbnailimageLogo; thumbnailimageLogo = imageLogo.GetThumbnailImage(100, 100, null, new System.IntPtr()); thumbnailimageLogo .Save(mstreamWebLogo, imageWebLogo.RawFormat);
hope this helps
|
| Author: Manindra Upadhyay 10 Oct 2008 | Member Level: Gold | Rating:  Points: 3 |
No, It is not possible to set image source as a .aspx page . you can set image height and width by using . <img src="image.aspx" height="200" width="200"/>
|