私のPrinterPackageで。aspxファイル私は次の'ユーザーコントロール'を持っています:
<%@ Register Src="~/ProvisionControls/DeferredTaxRollforwardControl.ascx" TagPrefix="uc9" TagName="DeferredTaxesRollforwardControl" %>
...
...
<div>
<uc9:DeferredTaxesRollforwardControl ID="DeferredTaxesRollforwardControl1" runat="server" />
</div>
これは、制御ファイル'DeferredTaxRollforwardControlを呼び出します。次のように定義された私のテーブルを含むascx ':
<table style="width: 4600px; border-spacing:0px;" border="0" frame="hsides" cellpadding="2" cellspacing="1">
<tr id = "tblTempDiff"> //want to import this
<td style="width:7.6%;" width="2px;" class="paintYellowTotalLeftBold">
Grand Total Current
</td>
<td style="width:2.8%;" width="2px;" class="paintYellowTotalBold">
<asp:Label ID="lblGrandTotalUnadjustedBeginningBalance" runat="server" Text=""></asp:Label>
</td>
... and more <td>
PrinterPackageで次のコードを使用して、テーブルを表示し、一部の列を非表示にしようとしています。aspx.csファイル:
TableRow row = DeferredTaxesRollforwardControl1.FindControl("tblTempDiff") as TableRow;
row.Cells[0].Visible = true;
row.Cells[1].Visible = true;
row.Cells[2].Visible = true;
row.Cells[3].Visible = true;
row.Cells[4].Visible = true;
row.Cells[5].Visible = true;
row.Cells[6].Visible = true;
row.Cells[7].Visible = true;
row.Cells[8].Visible = true;
row.Cells[9].Visible = false;
row.Cells[10].Visible = false;
row.Cells[11].Visible = false;
row.Cells[12].Visible = false;
しかし、これはテーブル行tblTempDiffを取得していないようで、代わりにnull値を返します。TableRow tblTempDiffから行にデータをインポートしてから、非表示にしたい列を非表示にするにはどうすればよいですか?
私は私の質問を説明することに関しては私が最高の人ではないことを知っているので、あなたがより多くの情報を必要とするならば私に質問をしてください。