You are developing an ASP.NET Web page. The page contains the following markup. <img src="https://img.ppkao.com/2018-07/lina/2018072617330447476.jpg" /><br /> The pages code-behind file includes the following code segment. <img src="https://img.ppkao.com/2018-07/lina/201807261735031700.jpg" /><br /> You need to get a reference to the Image named img. Which code segment should you add at line 06?()<p> You are developing an ASP.NET Web page. The page contains the following markup. <img src="https://img.ppkao.com/2018-07/lina/2018072617330447476.jpg" /><br /> The pages code-behind file includes the following code segment. <img src="https://img.ppkao.com/2018-07/lina/2018072617350
A、A.Image img = (Image)Page.FindControl("img");
B、B.Image img = (Image)e.Row.FindControl("img");
C、C.Image img = (Image)gvModels.FindControl("img");
D、D.Image img = (Image)Page.Form.FindControl("img");