M
mike
in the Page_Load event the following code works at design time but
does not work when placed on the production server.
I get an error "Object reference not set to an instance of an object."
the snippet is:
Image img = new Image();
img = FormView1.Row.FindControl("ProdPhoto") as Image;
if (img.ImageUrl.Length < 20)
img.ImageUrl = "images/unavailable.jpg";
This is on a standard Webform without master page.
I've been scouring the net trying to find the resolution for this but
have not had any luck although I've tried several suggestions.
I've read in many places that the ItemTemplate should be the
default....this is the only template I am using currently in this
FormView control so I can't figure out why FindControl is not locating
the image.
does not work when placed on the production server.
I get an error "Object reference not set to an instance of an object."
the snippet is:
Image img = new Image();
img = FormView1.Row.FindControl("ProdPhoto") as Image;
if (img.ImageUrl.Length < 20)
img.ImageUrl = "images/unavailable.jpg";
This is on a standard Webform without master page.
I've been scouring the net trying to find the resolution for this but
have not had any luck although I've tried several suggestions.
I've read in many places that the ItemTemplate should be the
default....this is the only template I am using currently in this
FormView control so I can't figure out why FindControl is not locating
the image.