以下查询在文本框中
SELECT [Brewery], [CP CS] FROM [Vw_QueryBuilder_27QueryBuilder1]
这两个字段在一些报告中使用
现在如果有人删除了上述任何一列,那么它会要求确认删除所有相关报告
我被确认卡住了
我试过像
ScriptManager.RegisterStartupScript(Page, typeof(Page), "somekey", "Confirm()", true);
// Page.ClientScript.RegisterStartupScript(this.GetType(), "Call my function", "Confirm()", true);
// Response.Write("<script>javascript:Confirm();</script>");
string confirmValue = CnfHide.Value.Trim();
if (confirmValue == "1")
javascript是
function Confirm() {
if (confirm("Some columns are being used in other reports, removing those columns from query builder will lead to remove all related reports. Dou you want to proceed?")) {
$("#ContentPlaceHolder1_CnfHide").val("1");
} else {
$("#ContentPlaceHolder1_CnfHide").val("0");
}
}
确认窗口正在出现,但它没有存储值 1 或 0 或在该点停止,它只是在函数后面的代码中传递了所有行