本文介绍了删除div中的代码.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么方法可以从ASP.Net后面的代码中删除div(html元素).
即:if(blah == true){div1.remove} else {div2.remove}
Is there any way I can remove a div (html element) from the code behind in ASP.Net.
ie: if (blah == true) { div1.remove } else { div2.remove }
推荐答案
ClientScript.RegisterStartupScript(this.GetType(), "remove", "<script>
这篇关于删除div中的代码.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!