我的页面中有许多超链接。如果我单击超链接,它将带我到相应的页面。我给Request.QueryString
超链接赋予了价值。现在我想将该Request.QueryString
值作为我的 ImageURL
我给了喜欢
<asp:Image ID="NewsImage" runat="server"
ImageUrl='<%# GetImageURL() %>' Width="100px" Height="100px" />
然后在编码方面我给出了喜欢
public string GetImageURL()
{
string imagename = Request.QueryString["News"] as string;
return "~/Images/" + imagename;
}
但我没有在我的输出中得到图像。
当我给出<asp:ImageButton
而不是那样时,我在放置 ImageButton 的地方 < asp:Image
收到类似提交查询的错误。