我在 C# 中有以下代码,它正在从 db 打印图像。通过此代码图像和单选按钮在单行中显示单次。这是我的代码
foreach (DataRow item in ds.Tables[0].Rows)
{
divs += @" <div style="" position:relative; height:100px; width:400px; margin:10px auto;"">
<div style=""position:absolute; width:80px; height:80px; top: 10px; left: 130px;"">
<a href=""#"" class=""screenshot"" rel=""images/"+item["namee"].ToString()+@".jpg"" ><img src=""images/" + item["namee"].ToString() + @".jpg"" width=""80px"" height=""80px"" /></a>
</div>";
if(id < 1){
divs += @" <div style=""position:absolute; width:231px; left:240px; top:35px; height: 40px;"">
<p style="" margin-top:10px; margin-left:20px; ""><input type=""radio"" name=""SSRI"" value=""" + item["namee"].ToString() + @""" /></p>
</div>";
}
divs += @"<div style=""position:absolute; width:231px; left:100px; bottom:10px; height: 40px;"">
</div>
</div>";
}
Response.Write(divs);
通过这个代码输出是这样的
Images '' radio
Images '' radio
但我希望输出应该像这样
Images '' radio Images '' radio
Images '' radio Images '' radio
有没有人可以帮助我做到这一点。请帮忙 !