2

我正在尝试提供替代图像,因为某些图像已损坏并且无法显示,我尝试使用 js 但没有成功,因此需要有关如何执行相同操作的帮助和建议。场景是在页面加载时,学生的信息绑定到 DataList,并在此基础上通过 GetImage 类从另一个表中提取图像,但问题是某些图像已损坏,因此我想显示另一个虚拟图像。我使用 CSS 更改了 BG 图像,但效果不如预期。

    <asp:DataList ID="DataList1" CssClass="slider" r RepeatColumns="6" RepeatDirection="Vertical" runat="server" OnEditCommand="DataList1_EditCommand" OnItemCommand="DataList1_ItemCommand">
<ItemTemplate>
    <ul>
    <li><a class="info" href="#">
        <asp:ImageButton CssClass="imagetest" AlternateText=" " ID="Image1" name="mybutton" runat="server" Width="140" Height="140" CommandName="image" OnLoad="changeImage();" CommandArgument="image" CausesValidation="false" ImageUrl='<%# "GetImage.aspx?source=" + Eval("city") +"&RollNo="+ Eval("RollNo") +"&state="+ Eval("state")+"&fname="+Eval("FirstName") +"&lname=" + Eval("LastName") %>'
        </li>
    </ul>
</ItemTemplate>
</asp:DataList>


protected void Page_Load(object sender, EventArgs e)
{       
    string city = Request.QueryString["city"];
    string RollNo = Request.QueryString["RollNo"];
    string state = Request.QueryString["state"];
    string fname = Request.QueryString["fname"];
    string lname = Request.QueryString["lname"];
    DataAccess dao = new DataAccess();
    dao.openConnection();
    byte[] arr = dao.GetPicture(city, RollNo, state, fname, lname);
    //Response.BinaryWrite(arr);
    try
    {    
        Response.BinaryWrite(arr);
    }    
    catch (Exception) { }
}
4

5 回答 5

6

如果未加载,您可以使用onerror图像并显示替代图像。

这是一个带有一个 img 标签的基本示例,在 asp.net 上,您可以进行类似的onerror调用

<img id="one" src="image.gif" onerror="imgError(this)">​

和 javascript

function imgError(me)
{
   // place here the alternative image
   var AlterNativeImg = "/images/emptyimage.gif";

   // to avoid the case that even the alternative fails        
   if(AlterNativeImg != me.src)
     me.src = AlterNativeImg;
}

并直播: http: //jsfiddle.net/DxN69/2/http://jsfiddle.net/DxN69/3/

最后:http: //jsfiddle.net/DxN69/4/

在 asp.net 图片按钮上

您只需将onerror="imgError(this)"您的 asp.net 标签添加为:

<asp:ImageButton ID="ImageButton1" runat="server" onclick="ImageButton1_Click" ImageUrl="image.jpg" onerror="imgError(this)" />

即使图像按钮被渲染为input最终结果也是一样的。

图片从后面的代码发送

在您上次更新之后,您清楚地知道您在尝试将页面作为图像发送时犯了一个大错误,而您甚至没有更改ContentType它。所以使用 a handler,例如创建一个名为的新处理程序loadImage.ashx,并将您的代码编写为:

   public void ProcessRequest(HttpContext context)
    {
      // this is a header that you can get when you read the image
      context.Response.ContentType = "image/jpeg";
      // cache the image - 24h example
      context.Response.Cache.SetExpires(DateTime.Now.AddHours(24));
      context.Response.Cache.SetMaxAge(new TimeSpan(24, 0, 0));
      // render direct
      context.Response.BufferOutput = false;

      // load here the image as you do
      ....

      // the size of the image
      context.Response.AddHeader("Content-Length", imageData.Length.ToString());
      // and send it to browser
      context.Response.OutputStream.Write(imageData, 0, imageData.Length);
    }

你的电话将是这样的:

<asp:ImageButton CssClass="imagetest" AlternateText=" " ID="Image1" name="mybutton" runat="server" Width="140" Height="140" CommandName="image" OnLoad="changeImage();" CommandArgument="image" CausesValidation="false" ImageUrl='<%# "loadImage.ashx?source=" + Eval("city") +"&RollNo="+ Eval("RollNo") +"&state="+ Eval("state")+"&fname="+Eval("FirstName") +"&lname=" + Eval("LastName") %>'

现在在这里您可以仔细检查图像是否存在,如果不存在则发送一些默认图像。

于 2012-12-31T11:09:19.830 回答
2
<img src="images.png" onerror="this.onerror=null;this.src='default.png'">
于 2012-12-31T11:21:03.453 回答
0

我更愿意为您要显示的设置imageURL属性。default image如果图像存在于database记录中,则将其替换imageURL为该记录,否则保持原样。

于 2012-12-31T11:01:24.590 回答
0

只需使用onerror event

<img src="image.gif" onerror="alert('The image could not be loaded.')"> 
于 2012-12-31T11:45:26.990 回答
0

而不是创建一个服务器端图像按钮为什么你不创建一个带有链接的 html 图像,它充当一个图像按钮。

<a class="info" href="#">
    <img src="<%# GetImage.aspx?source=" + Eval("city") +"&RollNo="+ Eval("RollNo") +"&state="+ Eval("state")+"&fname="+Eval("FirstName") +"&lname=" + Eval("LastName") %>" onerror="this.src='<%=Page.ResolveClientUrl("~/images/emptyimage.gif") %>'" alt="" class="imagetest" />
</a>
于 2016-03-29T16:16:02.180 回答