我需要在前端检测回发,以便我可以将它与 JQuery 一起使用来更改页面加载时的类。我怎样才能做到这一点?

最佳答案

this post 窃取:

在服务器端有这个

if(IsPostBack)
{
   // NOTE: the following uses an overload of RegisterClientScriptBlock()
   // that will surround our string with the needed script tags
   ClientScript.RegisterClientScriptBlock(GetType(), "IsPostBack", "var isPostBack = true;", true);
}

在客户端这个
if(isPostBack) {
   // do your thing
}

关于c# - 如何在前端 (aspx) 中检测回发,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5279585/

10-09 07:39