设计时 怎么获取文件物理路径?
例如 现在要开发一个asp.net自定义控件,类似Image控件,有一个ImageUrl属性,编辑器中设定一个图片路径,后要求设计时呈现该图片,现在要获取图片的width和height,int[] ImageWidthHeight = new int[2];
if (File.Exists(FilePath))
{
System.Drawing.Image imgPhoto = System.Drawing.Image.FromFile(FilePath);
ImageWidthHeight[0] = imgPhoto.Width;
ImageWidthHeight[1] = imgPhoto.Height;
}
现在需要获取图片文件的物理路径,在ControlDesigner中该怎样写? --------------------编程问答-------------------- server.map() --------------------编程问答-------------------- 可否考虑设置个属性 在前台设置。?
补充:.NET技术 , ASP.NET