image not work in firefox
-
this small side from the problem if iput this code in code behind of asp page protected void Page_Load(object sender, EventArgs e) { Image1.ImageUrl = Server.MapPath(@"images/1.jpg"); Image1.DataBind(); } it will work in microsoft internet explorer and won't work in opera and firefox??? any body can help???
-
this small side from the problem if iput this code in code behind of asp page protected void Page_Load(object sender, EventArgs e) { Image1.ImageUrl = Server.MapPath(@"images/1.jpg"); Image1.DataBind(); } it will work in microsoft internet explorer and won't work in opera and firefox??? any body can help???
When you run in IE, View the page source of IE see the path of that image. and then as per that path you need to set in code like. ./images/1.jpg like that.
Parwej Ahamad g.parwez@gmail.com