コードビハインドファイルからメソッドを呼び出したい。すでにすべてのスレッド/投稿などを読みましたが、機能しません!
私がしようとしました
- Image1.DataBind();を呼び出します。Image1.ImageUrl = "test.jpg"
- OnDataBinding="methodname"と正しいメソッドを呼び出します
- ImageUrl ='<%#GetImage(1)%>または<%= GetImage(1)%>を呼び出します
これが私のファイルからのコードスニペットです。
ASPXサイト:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Abstimmung.aspx.cs" Inherits="Schulsprecher.Abstimmung" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
.
.
<form id="form1" runat="server">
.
.
<asp:Image ID="Image1" runat="server" Width="250px" Height="300px" ImageUrl='<%# GetImage(1) %>' />
コードビハインドファイル
protected string GetImage(string index)
{
return "test.jpg";
}