只有在某些情況下,如果事件發生火災,我該如何要求確認?我正在服務器端工作,我只想要求確認我的布爾值是否爲true。詢問有條件的確認
Q
詢問有條件的確認
0
A
回答
1
How to add a "confirm delete" option in ASP.Net Gridview?
確定可以說你有一個網格模板列
<asp:Button ID="btnSave" runat="server" Text="Save" OnClientClick="return check();" />
內的按鈕,並在您檢查功能編寫確定按鈕應提高回傳?
<script type="text/javascript">
function check() {
var doINeedToAskUserConfirmation = // Get this according to your needs
if (doINeedToAskUserConfirmation ){
return confirm("Are you sure?");
}
return true;
}
</script>
可以說你有一個按鈕
<input type="button" id="btnConfirm" value="Proceed"/>
,從AJAX請求,以確定是否需要任何確認。
$("#btnConfirm").click(function(){
$.ajax({
type: "POST",
url: "some.ashx",
data: { name: "John", location: "Boston" }
}).done(function(response) {
// lets say when response is true we will ask confirmation
if (msg)
{
var c = confirm("All record will be deleted. Are you sure ? ");
// Do another ajax call to complete your operation
}
});
});
0
根據您正在使用的事件類型,您可以創建一個派生自EventArgs
的類,並將您的條件作爲屬性(例如,將其稱爲MyCondition)放置在您自己的類中。
在eventhandling方法,你就可以使用
if(e.MyCondition)
{
// do something
}
編輯: 根據你的意見,我建議你嘗試,如果你要使用編輯DetailsView,或使用GridView的編輯模式喜歡。
您也可以查看CustomValidator。
相關問題
- 1. asp.net確認刪除行爲有條件
- 2. 有條件:在link_to_remote中確認
- 3. 確認的條件,並在OpenERP的
- 4. 有條件的確認提示後面的asp.net代碼
- 5. 如何在有條件的PHP語句中使用JS確認?
- 6. ASP.NET MVC3 Ajax.ActionLink - 有條件的確認對話框
- 7. 有條件查詢
- 8. 如何在所有SQLAlchemy的查詢中實現默認條件
- 9. 有條件的MySql查詢
- 10. 有條件的SQL查詢
- 11. 有條件的SQL查詢
- 12. 有條件的Linq查詢
- 13. 有條件的SQL查詢
- 14. 確認SQL查詢
- 15. 訪問2013查詢條件
- 16. TSQL:條件查詢問題
- 17. 訪問SQL條件查詢
- 18. 訪問查詢條件
- 19. 訪問查詢/條件
- 20. SQL查詢 - 使條件有條件嗎?
- 21. 有條件查詢來確定我的報告的狀態
- 22. 在刪除文件/目錄之前詢問確認
- 23. 有條件查詢的查詢
- 24. 確認一個表單域再次有多個約束條件
- 25. 有條件地打開全球p:confirmDialog與p:確認
- 26. Android的ContentProvider的查詢條件問題
- 27. Spring Security有條件的基本認證
- 28. 有條件的HTTP基本認證
- 29. Python,有條件的問題
- 30. Ruby有條件的問題?
什麼樣的確認,你能解釋得更清楚嗎?對我來說,大部分時間我都使用javascript確認。 – ducnh