私は最初の UserControl を次のように書きました。
public partial class DefectMap : System.Web.UI.UserControl
{
const string imageProviderUrl = "~/DefectMapImageProvider.ashx?";
public long MapID { get; set; }
public int Rows { get; set; }
public int Cols { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
ComposeImageUrl();
GenerateTableStructure();
}
void ComposeImageUrl()
{
StringBuilder builder = new StringBuilder(imageProviderUrl);
builder.AppendFormat("DefectMapId={0}", MapID);
// set up width & height
if (Width != null && Width > 0)
{
builder.AppendFormat("&Width={0}", Width);
MapImage.Width = (Unit)Width;
}
if (Height != null && Height > 0)
{
builder.AppendFormat("&Height={0}", Height);
MapImage.Height = (Unit)Height;
}
MapImage.ImageUrl = builder.ToString();
}
void GenerateTableStructure()
{
if (Rows > 0 && Cols > 0)
{
TableHelper.CreateStructure(MapTable, Rows, Cols);
}
}
}
このコントロールをいくつかのページに追加し、マークアップで値を設定すると
<uc:DefectMap ID="DefectMap" runat="server" Height="80" MapID="1" />
それは私が期待するように動作します。しかし、コードで値 (Rows、MapID など) を設定しようとすると、機能しません。なぜそうでないのか分かりますか?コントロール ロジックを処理するために (Page_Load 以外の) 別のメソッドを使用する必要がありますか? このコントロールを GridView の子として使用し、これを試します:
protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
GridView grid = (GridView)sender;
if (e.Row.RowType == DataControlRowType.DataRow)
{
DefectMap defectMap = (DefectMap)e.Row.FindControl("DefectMap");
DEFECTMAP data = (DEFECTMAP)e.Row.DataItem;
defectMap.MapID = data.ID_DEFECTMAP;
defectMap.Rows = data.ROWS;
defectMap.Cols = data.COLS;
}
}