当我想在 asp.net 中回复页面时如何添加图像?

How can i add image when i want to respone page in asp.net?

我想编写简单的 Web 应用程序来写入任何数据 asp.net 响应并显示该行一个简单的图像,我使用此代码动态创建图像:

Image myImage = new Image();
myImage.Width = 50;
myImage.Height = 50;
myImage.ImageUrl = "direction_arrow_green_down.png";
this.Controls.Add(myImage);


并使用此代码编写简单的响应:

 Response.Write("<br/>"+ "SAMPLE");


但我想这样写:

Response.Write("<br/>"+ "SAMPLE"+myImage);


我想要这个:

我该如何解决?谢谢。

为什么你不能这样尝试?

 string img = "<img src='https://cdn3.iconfinder.com/data/icons/simple-web-navigation/165/tick-128.png' width='128' height='128'>";
        Response.Write("<br/>" + "SAMPLE" + img); ;