1
DemHere是我的textarea的控制:如何設置文本的textarea在FormView控件插入模式
<textarea id="Physical_DemandsTextBox" runat="server" cols="35" rows="6" value='<%# Bind("Physical_Demands") %>' />
這裏是我的邏輯,與其他asp:TextBox
控制工作
if (FormView1.CurrentMode == FormViewMode.Insert)
{
TextBox txtPhyDem = FormView1.FindControl("Physical_DemandsTextBox") as TextBox;
}
if (txtPhyDem != null)
{
txtPhyDem.Text = "Failed Test of the Testing Testers.";
}
當我運行應用程序在插入模式下文本區域爲空白。我該如何解決?
在哪個頁面事件中您正在執行此操作? –