1
我有一個具有以下模式彈出擴展頁面裏的控件:顯示在控制的模式彈出擴展消息框
<asp:Panel ID="pnl_Completed" runat="server">
<asp:Image ID="exit_Completed" runat="server" ImageUrl="" />
<h3 style="text-align:center;">Completed</h3>
<asp:Panel ID="pnl_inner" runat="server">
<table style="width:100%;height:100%" cellpadding="5px">
<tr style="height:40px;">
<td valign="top">Comment: </td>
<td>
<telerik:RadTextBox ID="txt_CompletedComment" runat="server" TextMode="MultiLine" Rows="6" Width="400" Height="100"></telerik:RadTextBox>
</td>
</tr>
<tr style="height:40px;">
<td colspan="2" align="center"><asp:Button id="btn_SaveCompleted" runat="server" Text="Complete" OnClick="btn_SaveCompleted_Click" /></td>
</tr>
</table>
</asp:Panel>
</asp:Panel>
<cc1:ModalPopupExtender ID="ModalPopupExtender_Completed" runat="server" PopupControlID="pnl_Completed" CancelControlID="exit_Completed" TargetControlID="dummy_btn_Completed" >
</cc1:ModalPopupExtender>
<asp:Button id="dummy_btn_Completed" runat="server" CssClass="display_none" />
我想說明的btn_SaveCompleted_Click事件一個消息時,文本框爲空,我曾嘗試這樣的:
If txt_CompletedComment.Text.Trim().Length = 0 Then
ScriptManager.RegisterStartupScript(Me, Me.GetType, "key", "alert('Please enter a comment.');", True)
End If
但這並不工作,它只是隱藏模式彈出擴展,沒有任何錯誤。我做錯了嗎?有沒有其他的方式來展示它?
我已經把功能和的OnClientClick,但我得到的是沒有定義ValidateTheTextbox ... – Zaki
得到它,我不得不更改ScriptManager.RegisterStartupScript(我到ScriptManager.RegisterStartupScript(Me.Page獲取父頁面..謝謝 – Zaki