firefox problem
-
this is small side of the problem. if you put this code in code behind of asp.net 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,but not in opera and firefox??? any body can help???
-
this is small side of the problem. if you put this code in code behind of asp.net 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,but not 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