English 中文(简体)
可处理的最新情况 B. 与ASP Button OnClientClick的更新小组的进展
原标题:Disable UpdateProgress in UpdatePanel with ASP Button OnClientClick

我的更新小组有一个单一的“进展控制”。 在这份增编中,我有多封信。 本多意见有许多州可以提出不同的意见。

我试图做的是,在某个具体县被点击时,只能显示最新进展的估算。 所有其他州都应隐藏/处置更新方案控制。 我正试图通过 j。 但我接受任何办法。

这是我的现行法典:

 function hideProgress() {
    $( #<%= UpdateProgress.ClientID %> ).hide();
    //console.log( hello );
    return false;
 }

这里是州之一:

 <asp:Button ID="btnCancel" runat="server" Text="Cancel" OnClick="btnCancel_Click" OnClientClick="hideProgress()" />

我知道我正在履行我的职责,因为我收到了我的标志。 不存在任何错误,只是不工作。

有人能向我表明我如何做到这一点?

感谢!

最佳回答

https://stackoverflow.com/a/6301744/1071574>。

在缩略语中,设想将UpdateProgress的控制权与“dummy”(即不存在)UpdatePanel联系起来。 无论何时,只要你想要打败它,就以产生“合成”后退的控制权为基础。 这将使它永远不会出现(因为只有<代码>上查询)。 它应当与原木一起工作。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签